├── .gitignore ├── LICENSE ├── README.md ├── project ├── build.properties └── plugins.sbt └── src ├── asciidoctor └── main.adoc ├── main ├── resources │ └── application.conf └── scala │ └── km │ └── akka │ └── restdoc │ └── example │ └── SimpleServer.scala └── test └── scala └── km └── akka └── restdoc └── example └── ServiceTest.scala /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodemaniak/akka-http-restdoc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodemaniak/akka-http-restdoc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodemaniak/akka-http-restdoc/HEAD/README.md -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.8 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodemaniak/akka-http-restdoc/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /src/asciidoctor/main.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodemaniak/akka-http-restdoc/HEAD/src/asciidoctor/main.adoc -------------------------------------------------------------------------------- /src/main/resources/application.conf: -------------------------------------------------------------------------------- 1 | akka { 2 | loglevel = "DEBUG" 3 | } -------------------------------------------------------------------------------- /src/main/scala/km/akka/restdoc/example/SimpleServer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodemaniak/akka-http-restdoc/HEAD/src/main/scala/km/akka/restdoc/example/SimpleServer.scala -------------------------------------------------------------------------------- /src/test/scala/km/akka/restdoc/example/ServiceTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodemaniak/akka-http-restdoc/HEAD/src/test/scala/km/akka/restdoc/example/ServiceTest.scala --------------------------------------------------------------------------------