Skip to content

Commit

Permalink
Initial setup of Jazzy
Browse files Browse the repository at this point in the history
  • Loading branch information
ianpartridge committed Aug 11, 2016
1 parent cf9c43d commit ed6aab0
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 1,6 @@
.build
build
docs
.vagrant
Packages
*.pkg
Expand Down
15 changes: 15 additions & 0 deletions .jazzy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 1,15 @@
module: Kitura
author: IBM
github_url: https://github.com/IBM-Swift/Kitura/

theme: fullwidth
clean: true
exclude: [Packages]

readme: README.md

skip_undocumented: true
hide_documentation_coverage: false

xcodebuild_arguments: [-project, Kitura.xcodeproj, -target, Kitura, -toolchain, org.swift.3020160725a, LIBRARY_SEARCH_PATHS=.build/debug]

1 change: 1 addition & 0 deletions Sources/Kitura/Kitura.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 23,7 @@ import Dispatch

// MARK Kitura

///
public class Kitura {

/// Add an HTTPServer on a port with a delegate.
Expand Down
1 change: 1 addition & 0 deletions Sources/Kitura/RouteRegex.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 25,7 @@ import Foundation
typealias RegularExpressionType = NSRegularExpression
#endif

///
public class RouteRegex {
public static let sharedInstance = RouteRegex()

Expand Down
1 change: 1 addition & 0 deletions Sources/Kitura/Router.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 21,7 @@ import KituraTemplateEngine

// MARK Router

///
public class Router {

/// Contains the list of routing elements
Expand Down
1 change: 1 addition & 0 deletions Sources/Kitura/RouterMiddlewareGenerator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 16,7 @@

// MARK: RouterMiddlewareGenerator

///
public class RouterMiddlewareGenerator: RouterMiddleware {

/// The closure invoked to handle requests
Expand Down
1 change: 1 addition & 0 deletions Sources/Kitura/RouterRequest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 22,7 @@ import Foundation

// MARK: RouterRequest

///
public class RouterRequest {

/// The server request
Expand Down
1 change: 1 addition & 0 deletions Sources/Kitura/RouterResponse.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 23,7 @@ import LoggerAPI

// MARK: RouterResponse

///
public class RouterResponse {

struct State {
Expand Down
1 change: 1 addition & 0 deletions Sources/Kitura/bodyParser/BodyParser.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 21,7 @@ import Foundation

// MARK: BodyParser

///
public class BodyParser: RouterMiddleware {

/// Static buffer size (in bytes)
Expand Down
1 change: 1 addition & 0 deletions Sources/Kitura/contentType/ContentType.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 19,7 @@ import LoggerAPI

// MARK: ContentType

///
public class ContentType {

/// Whether to use the local mime-type definitions or the ones in the file
Expand Down
1 change: 1 addition & 0 deletions Sources/Kitura/staticFileServer/StaticFileServer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 16,7 @@

// MARK: StaticFileServer

///
public class StaticFileServer: RouterMiddleware {

public struct CacheOptions {
Expand Down

0 comments on commit ed6aab0

Please sign in to comment.