├── .atomist.yml ├── .gitattributes ├── .gitignore ├── .java-version ├── .jvmopts ├── .scalafmt.conf ├── .travis.yml ├── AUTHORS.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE.md ├── README.md ├── codecov.yml ├── docs ├── _frees-layout │ ├── css │ │ ├── custom.css │ │ ├── initial-properties.css │ │ ├── palette.css │ │ └── style.css │ ├── img │ │ ├── background.svg │ │ ├── freestyle-background-jumbotron.svg │ │ ├── freestyle-icon-cassandra-line.svg │ │ ├── freestyle-icon-feature-algebra.svg │ │ ├── freestyle-icon-feature-handlers.svg │ │ ├── freestyle-icon-feature-modules.svg │ │ ├── freestyle-icon-library-cassandra.svg │ │ ├── freestyle-icon-library-effects-line.svg │ │ ├── freestyle-icon-library-effects.svg │ │ ├── freestyle-icon-library-kafka-line.svg │ │ ├── freestyle-icon-library-kafka.svg │ │ ├── freestyle-icon-library-rpc-line.svg │ │ ├── freestyle-icon-library-rpc.svg │ │ ├── freestyle-lines-libraries.svg │ │ ├── freestyle-logo-footer.svg │ │ ├── freestyle-logo-header-line.svg │ │ └── freestyle-logo-header.svg │ ├── index.html │ ├── js │ │ ├── _variables.scss │ │ ├── anime.min.js │ │ └── function.js │ └── sass │ │ ├── _components.scss │ │ ├── _mixins.scss │ │ ├── _variables.scss │ │ ├── custom.scss │ │ └── vendor │ │ └── animate.scss ├── src │ └── main │ │ ├── resources │ │ ├── application.conf │ │ ├── logback.xml │ │ └── microsite │ │ │ ├── css │ │ │ ├── custom.css │ │ │ └── theme-code.css │ │ │ ├── data │ │ │ ├── commons.yml │ │ │ └── menu.yml │ │ │ ├── img │ │ │ ├── background.svg │ │ │ ├── favicon.png │ │ │ ├── favicon114x114.png │ │ │ ├── favicon120x120.png │ │ │ ├── favicon128x128.png │ │ │ ├── favicon144x144.png │ │ │ ├── favicon150x150.png │ │ │ ├── favicon16x16.png │ │ │ ├── favicon32x32.png │ │ │ ├── favicon48x48.png │ │ │ ├── favicon57x57.png │ │ │ ├── favicon60X60.png │ │ │ ├── favicon64X64.png │ │ │ ├── favicon70X70.png │ │ │ ├── favicon72X72.png │ │ │ ├── favicon76x76.png │ │ │ ├── favicon96x96.png │ │ │ ├── freestyle-background-jumbotron.svg │ │ │ ├── freestyle-icon-cassandra-line.svg │ │ │ ├── freestyle-icon-feature-algebra.svg │ │ │ ├── freestyle-icon-feature-handlers.svg │ │ │ ├── freestyle-icon-feature-modules.svg │ │ │ ├── freestyle-icon-library-cassandra.svg │ │ │ ├── freestyle-icon-library-effects-line.svg │ │ │ ├── freestyle-icon-library-effects.svg │ │ │ ├── freestyle-icon-library-kafka-line.svg │ │ │ ├── freestyle-icon-library-kafka.svg │ │ │ ├── freestyle-icon-library-rpc-line.svg │ │ │ ├── freestyle-icon-library-rpc.svg │ │ │ ├── freestyle-lines-libraries.svg │ │ │ ├── freestyle-logo-footer.svg │ │ │ ├── freestyle-logo-header-line.svg │ │ │ ├── freestyle-logo-header.svg │ │ │ ├── poster.png │ │ │ ├── sidebar_brand.png │ │ │ ├── sidebar_brand2x.png │ │ │ └── twitter-card.png │ │ │ ├── includes │ │ │ ├── _fs-features.html │ │ │ ├── _fs-footer.html │ │ │ ├── _fs-header.html │ │ │ ├── _fs-libraries.html │ │ │ └── _fs-navigation.html │ │ │ ├── layouts │ │ │ └── fs-home.html │ │ │ ├── sass │ │ │ ├── _components.scss │ │ │ ├── _mixins.scss │ │ │ ├── _variables.scss │ │ │ ├── custom.scss │ │ │ └── vendor │ │ │ │ └── animate.scss │ │ │ └── static │ │ │ ├── animations.js │ │ │ └── anime.min.js │ │ └── tut │ │ ├── CNAME │ │ ├── README.md │ │ ├── TODO.md │ │ └── docs │ │ ├── README.md │ │ ├── cassandra │ │ └── readme.txt │ │ ├── core │ │ ├── README.md │ │ ├── algebras │ │ │ └── README.md │ │ ├── handlers │ │ │ └── README.md │ │ ├── modules │ │ │ └── README.md │ │ └── parallelism │ │ │ └── README.md │ │ ├── effects │ │ ├── README.md │ │ ├── async │ │ │ └── README.md │ │ ├── cache │ │ │ └── README.md │ │ ├── either │ │ │ └── README.md │ │ ├── error │ │ │ └── README.md │ │ ├── option │ │ │ └── README.md │ │ ├── reader │ │ │ └── README.md │ │ ├── state │ │ │ └── README.md │ │ ├── traverse │ │ │ └── README.md │ │ ├── validation │ │ │ └── README.md │ │ └── writer │ │ │ └── README.md │ │ ├── http │ │ ├── README.md │ │ ├── finch │ │ │ └── README.md │ │ ├── hammock │ │ │ └── README.md │ │ └── http4s │ │ │ └── README.md │ │ ├── integrations │ │ ├── README.md │ │ ├── akkahttp │ │ │ └── README.md │ │ ├── cats │ │ │ └── README.md │ │ ├── doobie │ │ │ └── README.md │ │ ├── fetch │ │ │ └── README.md │ │ ├── fs2 │ │ │ └── README.md.not │ │ ├── monix │ │ │ └── README.md │ │ ├── play │ │ │ └── README.md │ │ └── slick │ │ │ └── README.md │ │ ├── kafka │ │ └── README.md │ │ ├── libraries │ │ └── README.md │ │ ├── optimizations │ │ ├── README.md │ │ ├── bench-coproduct.json │ │ └── bench-functionk.json │ │ ├── patterns │ │ ├── README.md │ │ ├── config │ │ │ └── README.md │ │ └── logging │ │ │ └── README.md │ │ ├── related_work.md │ │ ├── rpc │ │ └── readme.txt │ │ └── stack │ │ └── README.md └── testdata │ ├── celsius.txt │ └── fahrenheit.txt ├── modules ├── async │ ├── async-cats-effect │ │ └── shared │ │ │ └── src │ │ │ ├── main │ │ │ └── scala │ │ │ │ └── AsyncCatsEffect.scala │ │ │ └── test │ │ │ └── scala │ │ │ └── AsyncCatsEffectTests.scala │ ├── async-guava │ │ └── src │ │ │ ├── main │ │ │ └── scala │ │ │ │ └── AsyncGuava.scala │ │ │ └── test │ │ │ └── scala │ │ │ └── AsyncGuavaTests.scala │ └── async │ │ └── shared │ │ └── src │ │ ├── main │ │ └── scala │ │ │ ├── async.scala │ │ │ ├── free │ │ │ └── async.scala │ │ │ └── tagless │ │ │ └── async.scala │ │ └── test │ │ └── scala │ │ ├── free │ │ ├── AsyncTests.scala │ │ └── Future2AsyncMTests.scala │ │ └── tagless │ │ └── AsyncTests.scala ├── bench │ └── src │ │ └── codegen │ │ └── scala │ │ └── free │ │ └── codegen.scala ├── cache │ └── shared │ │ └── src │ │ ├── main │ │ └── scala │ │ │ └── free │ │ │ ├── cache.scala │ │ │ └── hashmap │ │ │ ├── HashMapWrapper.scala │ │ │ └── Hasher.scala │ │ └── test │ │ └── scala │ │ └── free │ │ ├── CacheTests.scala │ │ └── TestContext.scala ├── config │ └── src │ │ ├── main │ │ └── scala │ │ │ ├── config.scala │ │ │ ├── free │ │ │ └── config.scala │ │ │ └── tagless │ │ │ └── config.scala │ │ └── test │ │ ├── resources │ │ └── application.conf │ │ └── scala │ │ ├── free │ │ └── ConfigTests.scala │ │ └── tagless │ │ └── ConfigTests.scala ├── core │ ├── js │ │ └── src │ │ │ └── test │ │ │ └── scala │ │ │ └── freestyle │ │ │ └── tagless │ │ │ └── taglessTests.scala │ ├── jvm │ │ └── src │ │ │ └── test │ │ │ └── scala │ │ │ └── freestyle │ │ │ ├── free │ │ │ ├── nondeterminism.scala │ │ │ └── parallel.scala │ │ │ └── tagless │ │ │ └── taglessTests.scala │ └── shared │ │ └── src │ │ ├── main │ │ └── scala │ │ │ └── freestyle │ │ │ ├── free │ │ │ ├── AnnotationMessages.java │ │ │ ├── Capture.scala │ │ │ ├── Implicits.scala │ │ │ ├── InjK.scala │ │ │ ├── Lift.scala │ │ │ ├── NonDeterminism.scala │ │ │ ├── annotations.scala │ │ │ ├── free.scala │ │ │ └── internal │ │ │ │ ├── Clait.scala │ │ │ │ ├── Errors.scala │ │ │ │ ├── ScalametaUtil.scala │ │ │ │ ├── free.scala │ │ │ │ └── module.scala │ │ │ └── tagless │ │ │ ├── annotations.scala │ │ │ ├── internal │ │ │ ├── module.scala │ │ │ └── tagless.scala │ │ │ └── package.scala │ │ └── test │ │ └── scala │ │ ├── freestyle │ │ ├── free │ │ │ ├── InjKTests.scala │ │ │ ├── Utils.scala │ │ │ ├── free.scala │ │ │ ├── implicits.scala │ │ │ └── module.scala │ │ └── tagless │ │ │ ├── StacksafeTests.scala │ │ │ ├── TaglessModuleTests.scala │ │ │ ├── TaglessTests.scala │ │ │ └── Utils.scala │ │ └── nopackage.scala ├── effects │ └── shared │ │ └── src │ │ ├── main │ │ └── scala │ │ │ ├── free │ │ │ └── effects │ │ │ │ ├── either.scala │ │ │ │ ├── error.scala │ │ │ │ ├── implicits.scala │ │ │ │ ├── option.scala │ │ │ │ ├── reader.scala │ │ │ │ ├── state.scala │ │ │ │ ├── traverse.scala │ │ │ │ ├── validation.scala │ │ │ │ └── writer.scala │ │ │ └── tagless │ │ │ └── effects │ │ │ ├── either.scala │ │ │ ├── error.scala │ │ │ ├── implicits.scala │ │ │ ├── option.scala │ │ │ ├── reader.scala │ │ │ ├── state.scala │ │ │ ├── traverse.scala │ │ │ ├── validation.scala │ │ │ └── writer.scala │ │ └── test │ │ └── scala │ │ ├── free │ │ └── effects │ │ │ └── EffectsTests.scala │ │ └── tagless │ │ └── effects │ │ └── EffectsTests.scala ├── examples │ ├── slick-example │ │ ├── README.md │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ ├── application.conf │ │ │ └── logback.xml │ │ │ └── scala │ │ │ └── freeslick │ │ │ ├── Index.scala │ │ │ ├── dao │ │ │ └── Tables.scala │ │ │ ├── modules.scala │ │ │ ├── persistence.scala │ │ │ └── services.scala │ ├── todolist-http-finch │ │ ├── README.md │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ └── application.conf │ │ │ └── scala │ │ │ └── todo │ │ │ ├── TodoListApp.scala │ │ │ ├── http │ │ │ ├── Api.scala │ │ │ ├── AppApi.scala │ │ │ ├── CRUDApi.scala │ │ │ ├── GenericApi.scala │ │ │ ├── TagApi.scala │ │ │ ├── TodoItemApi.scala │ │ │ └── TodoListApi.scala │ │ │ ├── model │ │ │ └── models.scala │ │ │ ├── persistence │ │ │ └── Persistence.scala │ │ │ ├── runtime │ │ │ └── implicits.scala │ │ │ └── services │ │ │ └── Services.scala │ ├── todolist-http-http4s │ │ ├── README.md │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ └── application.conf │ │ │ └── scala │ │ │ └── todo │ │ │ ├── TodoListApp.scala │ │ │ ├── http │ │ │ ├── Api.scala │ │ │ ├── AppApi.scala │ │ │ ├── GenericApi.scala │ │ │ ├── TagApi.scala │ │ │ ├── TodoItemApi.scala │ │ │ ├── TodoListApi.scala │ │ │ └── codecs.scala │ │ │ ├── model │ │ │ └── models.scala │ │ │ ├── peristence │ │ │ └── Persistence.scala │ │ │ ├── runtime │ │ │ └── implicits.scala │ │ │ └── services │ │ │ └── Services.scala │ └── todolist-lib │ │ ├── README.md │ │ └── src │ │ └── main │ │ └── scala │ │ └── todo │ │ ├── model │ │ ├── model.scala │ │ └── models.scala │ │ ├── persistence │ │ ├── AppRepository.scala │ │ ├── TagRepository.scala │ │ ├── TodoItemRepository.scala │ │ ├── TodoListRepository.scala │ │ └── runtime │ │ │ ├── AppRepositoryHandler.scala │ │ │ ├── TagRepositoryHandler.scala │ │ │ ├── TodoItemRepositoryHandler.scala │ │ │ ├── TodoListRepositoryHandler.scala │ │ │ └── queries │ │ │ ├── AppQueries.scala │ │ │ ├── TagQueries.scala │ │ │ ├── TodoItemQueries.scala │ │ │ └── TodoListQueries.scala │ │ └── service │ │ ├── AppService.scala │ │ ├── TagService.scala │ │ ├── TodoItemService.scala │ │ └── TodoListService.scala ├── integrations │ ├── cache-redis │ │ └── src │ │ │ ├── main │ │ │ └── scala │ │ │ │ └── rediscala │ │ │ │ └── free │ │ │ │ ├── Coders.scala │ │ │ │ ├── Instances.scala │ │ │ │ ├── Kleislis.scala │ │ │ │ ├── RedisMap.scala │ │ │ │ └── package.scala │ │ │ └── test │ │ │ └── scala │ │ │ └── free │ │ │ ├── RedisTests.scala │ │ │ ├── TestContext.scala │ │ │ └── TestUtil.scala │ ├── doobie │ │ └── src │ │ │ ├── main │ │ │ └── scala │ │ │ │ └── free │ │ │ │ └── doobie.scala │ │ │ └── test │ │ │ └── scala │ │ │ └── free │ │ │ └── DoobieTests.scala │ ├── fetch │ │ └── shared │ │ │ └── src │ │ │ ├── main │ │ │ └── scala │ │ │ │ └── free │ │ │ │ └── fetch.scala │ │ │ └── test │ │ │ └── scala │ │ │ └── free │ │ │ └── FetchTests.scala │ ├── fs2 │ │ └── shared │ │ │ └── src │ │ │ ├── main │ │ │ └── scala │ │ │ │ └── free │ │ │ │ └── fs2.scala │ │ │ └── test │ │ │ └── scala │ │ │ └── free │ │ │ └── Fs2Tests.scala │ ├── http │ │ ├── akka │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── scala │ │ │ │ │ └── free │ │ │ │ │ └── http │ │ │ │ │ └── akkahttp.scala │ │ │ │ └── test │ │ │ │ └── scala │ │ │ │ └── free │ │ │ │ └── http │ │ │ │ └── AkkaHttpTests.scala │ │ ├── finch │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── scala │ │ │ │ │ └── free │ │ │ │ │ └── http │ │ │ │ │ └── finch.scala │ │ │ │ └── test │ │ │ │ └── scala │ │ │ │ └── free │ │ │ │ └── http │ │ │ │ └── FinchTests.scala │ │ ├── http-client │ │ │ └── shared │ │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── scala │ │ │ │ │ └── free │ │ │ │ │ └── http │ │ │ │ │ └── free.scala │ │ │ │ └── test │ │ │ │ └── scala │ │ │ │ └── free │ │ │ │ └── http │ │ │ │ └── ClientTests.scala │ │ ├── http4s │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── scala │ │ │ │ │ └── free │ │ │ │ │ └── http │ │ │ │ │ └── http4s.scala │ │ │ │ └── test │ │ │ │ └── scala │ │ │ │ └── free │ │ │ │ └── http │ │ │ │ └── Http4sTest.scala │ │ └── play │ │ │ └── src │ │ │ ├── main │ │ │ └── scala │ │ │ │ └── free │ │ │ │ └── http │ │ │ │ └── play.scala │ │ │ └── test │ │ │ └── scala │ │ │ └── free │ │ │ └── http │ │ │ └── PlayTests.scala │ ├── monix │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── free │ │ │ └── monix.scala │ ├── slick │ │ └── src │ │ │ ├── main │ │ │ └── scala │ │ │ │ └── free │ │ │ │ └── slick.scala │ │ │ └── test │ │ │ └── scala │ │ │ └── free │ │ │ └── SlickTests.scala │ └── twitter-util │ │ └── src │ │ ├── main │ │ └── scala │ │ │ └── free │ │ │ └── util.scala │ │ └── test │ │ └── scala │ │ └── free │ │ └── TwitterUtilTests.scala ├── logging │ ├── js │ │ └── src │ │ │ ├── main │ │ │ └── scala │ │ │ │ ├── free │ │ │ │ └── loggingJS.scala │ │ │ │ └── tagless │ │ │ │ └── loggingJS.scala │ │ │ └── test │ │ │ └── scala │ │ │ ├── free │ │ │ └── LoggingTests.scala │ │ │ └── tagless │ │ │ └── LoggingTests.scala │ ├── jvm │ │ └── src │ │ │ ├── main │ │ │ └── scala │ │ │ │ ├── free │ │ │ │ ├── implicits.scala │ │ │ │ ├── journal.scala │ │ │ │ └── log4s.scala │ │ │ │ └── tagless │ │ │ │ ├── implicits.scala │ │ │ │ ├── journal.scala │ │ │ │ └── log4s.scala │ │ │ └── test │ │ │ └── scala │ │ │ ├── free │ │ │ ├── LoggingTestsJournal.scala │ │ │ └── LoggingTestsLog4s.scala │ │ │ └── tagless │ │ │ ├── LoggingTestsJournal.scala │ │ │ └── LoggingTestsLog4s.scala │ └── shared │ │ └── src │ │ ├── main │ │ └── scala │ │ │ ├── free │ │ │ └── logging.scala │ │ │ ├── logging.scala │ │ │ └── tagless │ │ │ └── logging.scala │ │ └── test │ │ └── scala │ │ ├── free │ │ └── algebras.scala │ │ └── tagless │ │ └── algebras.scala └── tests │ └── src │ ├── main │ └── resources │ │ └── free │ │ └── pcplodtest.scala │ └── test │ └── scala │ └── free │ ├── MonixParallelTests.scala │ └── Tests.scala ├── project ├── ProjectPlugin.scala ├── build.properties └── plugins.sbt ├── pubring.gpg ├── secring.gpg.enc └── version.sbt /.atomist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/.atomist.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .atomist.yml linguist-generated=true 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/.gitignore -------------------------------------------------------------------------------- /.java-version: -------------------------------------------------------------------------------- 1 | 1.8 2 | -------------------------------------------------------------------------------- /.jvmopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/.jvmopts -------------------------------------------------------------------------------- /.scalafmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/.scalafmt.conf -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/_frees-layout/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/css/custom.css -------------------------------------------------------------------------------- /docs/_frees-layout/css/initial-properties.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/css/initial-properties.css -------------------------------------------------------------------------------- /docs/_frees-layout/css/palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/css/palette.css -------------------------------------------------------------------------------- /docs/_frees-layout/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/css/style.css -------------------------------------------------------------------------------- /docs/_frees-layout/img/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/img/background.svg -------------------------------------------------------------------------------- /docs/_frees-layout/img/freestyle-background-jumbotron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/img/freestyle-background-jumbotron.svg -------------------------------------------------------------------------------- /docs/_frees-layout/img/freestyle-icon-cassandra-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/img/freestyle-icon-cassandra-line.svg -------------------------------------------------------------------------------- /docs/_frees-layout/img/freestyle-icon-feature-algebra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/img/freestyle-icon-feature-algebra.svg -------------------------------------------------------------------------------- /docs/_frees-layout/img/freestyle-icon-feature-handlers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/img/freestyle-icon-feature-handlers.svg -------------------------------------------------------------------------------- /docs/_frees-layout/img/freestyle-icon-feature-modules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/img/freestyle-icon-feature-modules.svg -------------------------------------------------------------------------------- /docs/_frees-layout/img/freestyle-icon-library-cassandra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/img/freestyle-icon-library-cassandra.svg -------------------------------------------------------------------------------- /docs/_frees-layout/img/freestyle-icon-library-effects-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/img/freestyle-icon-library-effects-line.svg -------------------------------------------------------------------------------- /docs/_frees-layout/img/freestyle-icon-library-effects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/img/freestyle-icon-library-effects.svg -------------------------------------------------------------------------------- /docs/_frees-layout/img/freestyle-icon-library-kafka-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/img/freestyle-icon-library-kafka-line.svg -------------------------------------------------------------------------------- /docs/_frees-layout/img/freestyle-icon-library-kafka.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/img/freestyle-icon-library-kafka.svg -------------------------------------------------------------------------------- /docs/_frees-layout/img/freestyle-icon-library-rpc-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/img/freestyle-icon-library-rpc-line.svg -------------------------------------------------------------------------------- /docs/_frees-layout/img/freestyle-icon-library-rpc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/img/freestyle-icon-library-rpc.svg -------------------------------------------------------------------------------- /docs/_frees-layout/img/freestyle-lines-libraries.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/img/freestyle-lines-libraries.svg -------------------------------------------------------------------------------- /docs/_frees-layout/img/freestyle-logo-footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/img/freestyle-logo-footer.svg -------------------------------------------------------------------------------- /docs/_frees-layout/img/freestyle-logo-header-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/img/freestyle-logo-header-line.svg -------------------------------------------------------------------------------- /docs/_frees-layout/img/freestyle-logo-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/img/freestyle-logo-header.svg -------------------------------------------------------------------------------- /docs/_frees-layout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/index.html -------------------------------------------------------------------------------- /docs/_frees-layout/js/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/js/_variables.scss -------------------------------------------------------------------------------- /docs/_frees-layout/js/anime.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/js/anime.min.js -------------------------------------------------------------------------------- /docs/_frees-layout/js/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/js/function.js -------------------------------------------------------------------------------- /docs/_frees-layout/sass/_components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/sass/_components.scss -------------------------------------------------------------------------------- /docs/_frees-layout/sass/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/sass/_mixins.scss -------------------------------------------------------------------------------- /docs/_frees-layout/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/sass/_variables.scss -------------------------------------------------------------------------------- /docs/_frees-layout/sass/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/sass/custom.scss -------------------------------------------------------------------------------- /docs/_frees-layout/sass/vendor/animate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/_frees-layout/sass/vendor/animate.scss -------------------------------------------------------------------------------- /docs/src/main/resources/application.conf: -------------------------------------------------------------------------------- 1 | disallowedStates = ["reverted", "closed"] -------------------------------------------------------------------------------- /docs/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/logback.xml -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/css/custom.css -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/css/theme-code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/css/theme-code.css -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/data/commons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/data/commons.yml -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/data/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/data/menu.yml -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/background.svg -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/favicon.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/favicon114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/favicon114x114.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/favicon120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/favicon120x120.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/favicon128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/favicon128x128.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/favicon144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/favicon144x144.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/favicon150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/favicon150x150.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/favicon16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/favicon16x16.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/favicon32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/favicon32x32.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/favicon48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/favicon48x48.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/favicon57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/favicon57x57.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/favicon60X60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/favicon60X60.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/favicon64X64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/favicon64X64.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/favicon70X70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/favicon70X70.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/favicon72X72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/favicon72X72.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/favicon76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/favicon76x76.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/favicon96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/favicon96x96.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/freestyle-background-jumbotron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/freestyle-background-jumbotron.svg -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/freestyle-icon-cassandra-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/freestyle-icon-cassandra-line.svg -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/freestyle-icon-feature-algebra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/freestyle-icon-feature-algebra.svg -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/freestyle-icon-feature-handlers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/freestyle-icon-feature-handlers.svg -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/freestyle-icon-feature-modules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/freestyle-icon-feature-modules.svg -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/freestyle-icon-library-cassandra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/freestyle-icon-library-cassandra.svg -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/freestyle-icon-library-effects-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/freestyle-icon-library-effects-line.svg -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/freestyle-icon-library-effects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/freestyle-icon-library-effects.svg -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/freestyle-icon-library-kafka-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/freestyle-icon-library-kafka-line.svg -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/freestyle-icon-library-kafka.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/freestyle-icon-library-kafka.svg -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/freestyle-icon-library-rpc-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/freestyle-icon-library-rpc-line.svg -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/freestyle-icon-library-rpc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/freestyle-icon-library-rpc.svg -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/freestyle-lines-libraries.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/freestyle-lines-libraries.svg -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/freestyle-logo-footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/freestyle-logo-footer.svg -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/freestyle-logo-header-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/freestyle-logo-header-line.svg -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/freestyle-logo-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/freestyle-logo-header.svg -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/poster.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/sidebar_brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/sidebar_brand.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/sidebar_brand2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/sidebar_brand2x.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/img/twitter-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/img/twitter-card.png -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/includes/_fs-features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/includes/_fs-features.html -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/includes/_fs-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/includes/_fs-footer.html -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/includes/_fs-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/includes/_fs-header.html -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/includes/_fs-libraries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/includes/_fs-libraries.html -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/includes/_fs-navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/includes/_fs-navigation.html -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/layouts/fs-home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/layouts/fs-home.html -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/sass/_components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/sass/_components.scss -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/sass/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/sass/_mixins.scss -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/sass/_variables.scss -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/sass/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/sass/custom.scss -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/sass/vendor/animate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/sass/vendor/animate.scss -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/static/animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/static/animations.js -------------------------------------------------------------------------------- /docs/src/main/resources/microsite/static/anime.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/resources/microsite/static/anime.min.js -------------------------------------------------------------------------------- /docs/src/main/tut/CNAME: -------------------------------------------------------------------------------- 1 | frees.io -------------------------------------------------------------------------------- /docs/src/main/tut/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/TODO.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: docs 3 | permalink: /TODO 4 | --- 5 | 6 | Work in progress -------------------------------------------------------------------------------- /docs/src/main/tut/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/cassandra/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/cassandra/readme.txt -------------------------------------------------------------------------------- /docs/src/main/tut/docs/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/core/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/core/algebras/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/core/algebras/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/core/handlers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/core/handlers/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/core/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/core/modules/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/core/parallelism/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/core/parallelism/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/effects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/effects/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/effects/async/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/effects/async/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/effects/cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/effects/cache/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/effects/either/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/effects/either/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/effects/error/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/effects/error/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/effects/option/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/effects/option/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/effects/reader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/effects/reader/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/effects/state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/effects/state/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/effects/traverse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/effects/traverse/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/effects/validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/effects/validation/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/effects/writer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/effects/writer/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/http/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/http/finch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/http/finch/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/http/hammock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/http/hammock/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/http/http4s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/http/http4s/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/integrations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/integrations/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/integrations/akkahttp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/integrations/akkahttp/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/integrations/cats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/integrations/cats/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/integrations/doobie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/integrations/doobie/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/integrations/fetch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/integrations/fetch/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/integrations/fs2/README.md.not: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/integrations/fs2/README.md.not -------------------------------------------------------------------------------- /docs/src/main/tut/docs/integrations/monix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/integrations/monix/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/integrations/play/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/integrations/play/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/integrations/slick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/integrations/slick/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/kafka/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/libraries/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/optimizations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/optimizations/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/optimizations/bench-coproduct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/optimizations/bench-coproduct.json -------------------------------------------------------------------------------- /docs/src/main/tut/docs/optimizations/bench-functionk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/optimizations/bench-functionk.json -------------------------------------------------------------------------------- /docs/src/main/tut/docs/patterns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/patterns/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/patterns/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/patterns/config/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/patterns/logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/patterns/logging/README.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/related_work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/related_work.md -------------------------------------------------------------------------------- /docs/src/main/tut/docs/rpc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/rpc/readme.txt -------------------------------------------------------------------------------- /docs/src/main/tut/docs/stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/src/main/tut/docs/stack/README.md -------------------------------------------------------------------------------- /docs/testdata/celsius.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/testdata/celsius.txt -------------------------------------------------------------------------------- /docs/testdata/fahrenheit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/docs/testdata/fahrenheit.txt -------------------------------------------------------------------------------- /modules/async/async-cats-effect/shared/src/main/scala/AsyncCatsEffect.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/async/async-cats-effect/shared/src/main/scala/AsyncCatsEffect.scala -------------------------------------------------------------------------------- /modules/async/async-cats-effect/shared/src/test/scala/AsyncCatsEffectTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/async/async-cats-effect/shared/src/test/scala/AsyncCatsEffectTests.scala -------------------------------------------------------------------------------- /modules/async/async-guava/src/main/scala/AsyncGuava.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/async/async-guava/src/main/scala/AsyncGuava.scala -------------------------------------------------------------------------------- /modules/async/async-guava/src/test/scala/AsyncGuavaTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/async/async-guava/src/test/scala/AsyncGuavaTests.scala -------------------------------------------------------------------------------- /modules/async/async/shared/src/main/scala/async.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/async/async/shared/src/main/scala/async.scala -------------------------------------------------------------------------------- /modules/async/async/shared/src/main/scala/free/async.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/async/async/shared/src/main/scala/free/async.scala -------------------------------------------------------------------------------- /modules/async/async/shared/src/main/scala/tagless/async.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/async/async/shared/src/main/scala/tagless/async.scala -------------------------------------------------------------------------------- /modules/async/async/shared/src/test/scala/free/AsyncTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/async/async/shared/src/test/scala/free/AsyncTests.scala -------------------------------------------------------------------------------- /modules/async/async/shared/src/test/scala/free/Future2AsyncMTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/async/async/shared/src/test/scala/free/Future2AsyncMTests.scala -------------------------------------------------------------------------------- /modules/async/async/shared/src/test/scala/tagless/AsyncTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/async/async/shared/src/test/scala/tagless/AsyncTests.scala -------------------------------------------------------------------------------- /modules/bench/src/codegen/scala/free/codegen.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/bench/src/codegen/scala/free/codegen.scala -------------------------------------------------------------------------------- /modules/cache/shared/src/main/scala/free/cache.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/cache/shared/src/main/scala/free/cache.scala -------------------------------------------------------------------------------- /modules/cache/shared/src/main/scala/free/hashmap/HashMapWrapper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/cache/shared/src/main/scala/free/hashmap/HashMapWrapper.scala -------------------------------------------------------------------------------- /modules/cache/shared/src/main/scala/free/hashmap/Hasher.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/cache/shared/src/main/scala/free/hashmap/Hasher.scala -------------------------------------------------------------------------------- /modules/cache/shared/src/test/scala/free/CacheTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/cache/shared/src/test/scala/free/CacheTests.scala -------------------------------------------------------------------------------- /modules/cache/shared/src/test/scala/free/TestContext.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/cache/shared/src/test/scala/free/TestContext.scala -------------------------------------------------------------------------------- /modules/config/src/main/scala/config.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/config/src/main/scala/config.scala -------------------------------------------------------------------------------- /modules/config/src/main/scala/free/config.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/config/src/main/scala/free/config.scala -------------------------------------------------------------------------------- /modules/config/src/main/scala/tagless/config.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/config/src/main/scala/tagless/config.scala -------------------------------------------------------------------------------- /modules/config/src/test/resources/application.conf: -------------------------------------------------------------------------------- 1 | s = 3 -------------------------------------------------------------------------------- /modules/config/src/test/scala/free/ConfigTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/config/src/test/scala/free/ConfigTests.scala -------------------------------------------------------------------------------- /modules/config/src/test/scala/tagless/ConfigTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/config/src/test/scala/tagless/ConfigTests.scala -------------------------------------------------------------------------------- /modules/core/js/src/test/scala/freestyle/tagless/taglessTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/js/src/test/scala/freestyle/tagless/taglessTests.scala -------------------------------------------------------------------------------- /modules/core/jvm/src/test/scala/freestyle/free/nondeterminism.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/jvm/src/test/scala/freestyle/free/nondeterminism.scala -------------------------------------------------------------------------------- /modules/core/jvm/src/test/scala/freestyle/free/parallel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/jvm/src/test/scala/freestyle/free/parallel.scala -------------------------------------------------------------------------------- /modules/core/jvm/src/test/scala/freestyle/tagless/taglessTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/jvm/src/test/scala/freestyle/tagless/taglessTests.scala -------------------------------------------------------------------------------- /modules/core/shared/src/main/scala/freestyle/free/AnnotationMessages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/main/scala/freestyle/free/AnnotationMessages.java -------------------------------------------------------------------------------- /modules/core/shared/src/main/scala/freestyle/free/Capture.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/main/scala/freestyle/free/Capture.scala -------------------------------------------------------------------------------- /modules/core/shared/src/main/scala/freestyle/free/Implicits.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/main/scala/freestyle/free/Implicits.scala -------------------------------------------------------------------------------- /modules/core/shared/src/main/scala/freestyle/free/InjK.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/main/scala/freestyle/free/InjK.scala -------------------------------------------------------------------------------- /modules/core/shared/src/main/scala/freestyle/free/Lift.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/main/scala/freestyle/free/Lift.scala -------------------------------------------------------------------------------- /modules/core/shared/src/main/scala/freestyle/free/NonDeterminism.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/main/scala/freestyle/free/NonDeterminism.scala -------------------------------------------------------------------------------- /modules/core/shared/src/main/scala/freestyle/free/annotations.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/main/scala/freestyle/free/annotations.scala -------------------------------------------------------------------------------- /modules/core/shared/src/main/scala/freestyle/free/free.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/main/scala/freestyle/free/free.scala -------------------------------------------------------------------------------- /modules/core/shared/src/main/scala/freestyle/free/internal/Clait.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/main/scala/freestyle/free/internal/Clait.scala -------------------------------------------------------------------------------- /modules/core/shared/src/main/scala/freestyle/free/internal/Errors.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/main/scala/freestyle/free/internal/Errors.scala -------------------------------------------------------------------------------- /modules/core/shared/src/main/scala/freestyle/free/internal/ScalametaUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/main/scala/freestyle/free/internal/ScalametaUtil.scala -------------------------------------------------------------------------------- /modules/core/shared/src/main/scala/freestyle/free/internal/free.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/main/scala/freestyle/free/internal/free.scala -------------------------------------------------------------------------------- /modules/core/shared/src/main/scala/freestyle/free/internal/module.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/main/scala/freestyle/free/internal/module.scala -------------------------------------------------------------------------------- /modules/core/shared/src/main/scala/freestyle/tagless/annotations.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/main/scala/freestyle/tagless/annotations.scala -------------------------------------------------------------------------------- /modules/core/shared/src/main/scala/freestyle/tagless/internal/module.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/main/scala/freestyle/tagless/internal/module.scala -------------------------------------------------------------------------------- /modules/core/shared/src/main/scala/freestyle/tagless/internal/tagless.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/main/scala/freestyle/tagless/internal/tagless.scala -------------------------------------------------------------------------------- /modules/core/shared/src/main/scala/freestyle/tagless/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/main/scala/freestyle/tagless/package.scala -------------------------------------------------------------------------------- /modules/core/shared/src/test/scala/freestyle/free/InjKTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/test/scala/freestyle/free/InjKTests.scala -------------------------------------------------------------------------------- /modules/core/shared/src/test/scala/freestyle/free/Utils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/test/scala/freestyle/free/Utils.scala -------------------------------------------------------------------------------- /modules/core/shared/src/test/scala/freestyle/free/free.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/test/scala/freestyle/free/free.scala -------------------------------------------------------------------------------- /modules/core/shared/src/test/scala/freestyle/free/implicits.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/test/scala/freestyle/free/implicits.scala -------------------------------------------------------------------------------- /modules/core/shared/src/test/scala/freestyle/free/module.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/test/scala/freestyle/free/module.scala -------------------------------------------------------------------------------- /modules/core/shared/src/test/scala/freestyle/tagless/StacksafeTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/test/scala/freestyle/tagless/StacksafeTests.scala -------------------------------------------------------------------------------- /modules/core/shared/src/test/scala/freestyle/tagless/TaglessModuleTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/test/scala/freestyle/tagless/TaglessModuleTests.scala -------------------------------------------------------------------------------- /modules/core/shared/src/test/scala/freestyle/tagless/TaglessTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/test/scala/freestyle/tagless/TaglessTests.scala -------------------------------------------------------------------------------- /modules/core/shared/src/test/scala/freestyle/tagless/Utils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/test/scala/freestyle/tagless/Utils.scala -------------------------------------------------------------------------------- /modules/core/shared/src/test/scala/nopackage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/core/shared/src/test/scala/nopackage.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/main/scala/free/effects/either.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/main/scala/free/effects/either.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/main/scala/free/effects/error.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/main/scala/free/effects/error.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/main/scala/free/effects/implicits.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/main/scala/free/effects/implicits.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/main/scala/free/effects/option.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/main/scala/free/effects/option.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/main/scala/free/effects/reader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/main/scala/free/effects/reader.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/main/scala/free/effects/state.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/main/scala/free/effects/state.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/main/scala/free/effects/traverse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/main/scala/free/effects/traverse.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/main/scala/free/effects/validation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/main/scala/free/effects/validation.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/main/scala/free/effects/writer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/main/scala/free/effects/writer.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/main/scala/tagless/effects/either.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/main/scala/tagless/effects/either.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/main/scala/tagless/effects/error.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/main/scala/tagless/effects/error.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/main/scala/tagless/effects/implicits.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/main/scala/tagless/effects/implicits.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/main/scala/tagless/effects/option.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/main/scala/tagless/effects/option.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/main/scala/tagless/effects/reader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/main/scala/tagless/effects/reader.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/main/scala/tagless/effects/state.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/main/scala/tagless/effects/state.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/main/scala/tagless/effects/traverse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/main/scala/tagless/effects/traverse.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/main/scala/tagless/effects/validation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/main/scala/tagless/effects/validation.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/main/scala/tagless/effects/writer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/main/scala/tagless/effects/writer.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/test/scala/free/effects/EffectsTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/test/scala/free/effects/EffectsTests.scala -------------------------------------------------------------------------------- /modules/effects/shared/src/test/scala/tagless/effects/EffectsTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/effects/shared/src/test/scala/tagless/effects/EffectsTests.scala -------------------------------------------------------------------------------- /modules/examples/slick-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/slick-example/README.md -------------------------------------------------------------------------------- /modules/examples/slick-example/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/slick-example/src/main/resources/application.conf -------------------------------------------------------------------------------- /modules/examples/slick-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/slick-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /modules/examples/slick-example/src/main/scala/freeslick/Index.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/slick-example/src/main/scala/freeslick/Index.scala -------------------------------------------------------------------------------- /modules/examples/slick-example/src/main/scala/freeslick/dao/Tables.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/slick-example/src/main/scala/freeslick/dao/Tables.scala -------------------------------------------------------------------------------- /modules/examples/slick-example/src/main/scala/freeslick/modules.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/slick-example/src/main/scala/freeslick/modules.scala -------------------------------------------------------------------------------- /modules/examples/slick-example/src/main/scala/freeslick/persistence.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/slick-example/src/main/scala/freeslick/persistence.scala -------------------------------------------------------------------------------- /modules/examples/slick-example/src/main/scala/freeslick/services.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/slick-example/src/main/scala/freeslick/services.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-finch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-finch/README.md -------------------------------------------------------------------------------- /modules/examples/todolist-http-finch/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-finch/src/main/resources/application.conf -------------------------------------------------------------------------------- /modules/examples/todolist-http-finch/src/main/scala/todo/TodoListApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-finch/src/main/scala/todo/TodoListApp.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-finch/src/main/scala/todo/http/Api.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-finch/src/main/scala/todo/http/Api.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-finch/src/main/scala/todo/http/AppApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-finch/src/main/scala/todo/http/AppApi.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-finch/src/main/scala/todo/http/CRUDApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-finch/src/main/scala/todo/http/CRUDApi.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-finch/src/main/scala/todo/http/GenericApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-finch/src/main/scala/todo/http/GenericApi.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-finch/src/main/scala/todo/http/TagApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-finch/src/main/scala/todo/http/TagApi.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-finch/src/main/scala/todo/http/TodoItemApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-finch/src/main/scala/todo/http/TodoItemApi.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-finch/src/main/scala/todo/http/TodoListApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-finch/src/main/scala/todo/http/TodoListApi.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-finch/src/main/scala/todo/model/models.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-finch/src/main/scala/todo/model/models.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-finch/src/main/scala/todo/persistence/Persistence.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-finch/src/main/scala/todo/persistence/Persistence.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-finch/src/main/scala/todo/runtime/implicits.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-finch/src/main/scala/todo/runtime/implicits.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-finch/src/main/scala/todo/services/Services.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-finch/src/main/scala/todo/services/Services.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-http4s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-http4s/README.md -------------------------------------------------------------------------------- /modules/examples/todolist-http-http4s/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-http4s/src/main/resources/application.conf -------------------------------------------------------------------------------- /modules/examples/todolist-http-http4s/src/main/scala/todo/TodoListApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-http4s/src/main/scala/todo/TodoListApp.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-http4s/src/main/scala/todo/http/Api.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-http4s/src/main/scala/todo/http/Api.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-http4s/src/main/scala/todo/http/AppApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-http4s/src/main/scala/todo/http/AppApi.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-http4s/src/main/scala/todo/http/GenericApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-http4s/src/main/scala/todo/http/GenericApi.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-http4s/src/main/scala/todo/http/TagApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-http4s/src/main/scala/todo/http/TagApi.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-http4s/src/main/scala/todo/http/TodoItemApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-http4s/src/main/scala/todo/http/TodoItemApi.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-http4s/src/main/scala/todo/http/TodoListApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-http4s/src/main/scala/todo/http/TodoListApi.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-http4s/src/main/scala/todo/http/codecs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-http4s/src/main/scala/todo/http/codecs.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-http4s/src/main/scala/todo/model/models.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-http4s/src/main/scala/todo/model/models.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-http4s/src/main/scala/todo/peristence/Persistence.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-http4s/src/main/scala/todo/peristence/Persistence.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-http4s/src/main/scala/todo/runtime/implicits.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-http4s/src/main/scala/todo/runtime/implicits.scala -------------------------------------------------------------------------------- /modules/examples/todolist-http-http4s/src/main/scala/todo/services/Services.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-http-http4s/src/main/scala/todo/services/Services.scala -------------------------------------------------------------------------------- /modules/examples/todolist-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/README.md -------------------------------------------------------------------------------- /modules/examples/todolist-lib/src/main/scala/todo/model/model.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/src/main/scala/todo/model/model.scala -------------------------------------------------------------------------------- /modules/examples/todolist-lib/src/main/scala/todo/model/models.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/src/main/scala/todo/model/models.scala -------------------------------------------------------------------------------- /modules/examples/todolist-lib/src/main/scala/todo/persistence/AppRepository.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/src/main/scala/todo/persistence/AppRepository.scala -------------------------------------------------------------------------------- /modules/examples/todolist-lib/src/main/scala/todo/persistence/TagRepository.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/src/main/scala/todo/persistence/TagRepository.scala -------------------------------------------------------------------------------- /modules/examples/todolist-lib/src/main/scala/todo/persistence/TodoItemRepository.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/src/main/scala/todo/persistence/TodoItemRepository.scala -------------------------------------------------------------------------------- /modules/examples/todolist-lib/src/main/scala/todo/persistence/TodoListRepository.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/src/main/scala/todo/persistence/TodoListRepository.scala -------------------------------------------------------------------------------- /modules/examples/todolist-lib/src/main/scala/todo/persistence/runtime/AppRepositoryHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/src/main/scala/todo/persistence/runtime/AppRepositoryHandler.scala -------------------------------------------------------------------------------- /modules/examples/todolist-lib/src/main/scala/todo/persistence/runtime/TagRepositoryHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/src/main/scala/todo/persistence/runtime/TagRepositoryHandler.scala -------------------------------------------------------------------------------- /modules/examples/todolist-lib/src/main/scala/todo/persistence/runtime/TodoItemRepositoryHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/src/main/scala/todo/persistence/runtime/TodoItemRepositoryHandler.scala -------------------------------------------------------------------------------- /modules/examples/todolist-lib/src/main/scala/todo/persistence/runtime/TodoListRepositoryHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/src/main/scala/todo/persistence/runtime/TodoListRepositoryHandler.scala -------------------------------------------------------------------------------- /modules/examples/todolist-lib/src/main/scala/todo/persistence/runtime/queries/AppQueries.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/src/main/scala/todo/persistence/runtime/queries/AppQueries.scala -------------------------------------------------------------------------------- /modules/examples/todolist-lib/src/main/scala/todo/persistence/runtime/queries/TagQueries.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/src/main/scala/todo/persistence/runtime/queries/TagQueries.scala -------------------------------------------------------------------------------- /modules/examples/todolist-lib/src/main/scala/todo/persistence/runtime/queries/TodoItemQueries.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/src/main/scala/todo/persistence/runtime/queries/TodoItemQueries.scala -------------------------------------------------------------------------------- /modules/examples/todolist-lib/src/main/scala/todo/persistence/runtime/queries/TodoListQueries.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/src/main/scala/todo/persistence/runtime/queries/TodoListQueries.scala -------------------------------------------------------------------------------- /modules/examples/todolist-lib/src/main/scala/todo/service/AppService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/src/main/scala/todo/service/AppService.scala -------------------------------------------------------------------------------- /modules/examples/todolist-lib/src/main/scala/todo/service/TagService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/src/main/scala/todo/service/TagService.scala -------------------------------------------------------------------------------- /modules/examples/todolist-lib/src/main/scala/todo/service/TodoItemService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/src/main/scala/todo/service/TodoItemService.scala -------------------------------------------------------------------------------- /modules/examples/todolist-lib/src/main/scala/todo/service/TodoListService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/examples/todolist-lib/src/main/scala/todo/service/TodoListService.scala -------------------------------------------------------------------------------- /modules/integrations/cache-redis/src/main/scala/rediscala/free/Coders.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/cache-redis/src/main/scala/rediscala/free/Coders.scala -------------------------------------------------------------------------------- /modules/integrations/cache-redis/src/main/scala/rediscala/free/Instances.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/cache-redis/src/main/scala/rediscala/free/Instances.scala -------------------------------------------------------------------------------- /modules/integrations/cache-redis/src/main/scala/rediscala/free/Kleislis.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/cache-redis/src/main/scala/rediscala/free/Kleislis.scala -------------------------------------------------------------------------------- /modules/integrations/cache-redis/src/main/scala/rediscala/free/RedisMap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/cache-redis/src/main/scala/rediscala/free/RedisMap.scala -------------------------------------------------------------------------------- /modules/integrations/cache-redis/src/main/scala/rediscala/free/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/cache-redis/src/main/scala/rediscala/free/package.scala -------------------------------------------------------------------------------- /modules/integrations/cache-redis/src/test/scala/free/RedisTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/cache-redis/src/test/scala/free/RedisTests.scala -------------------------------------------------------------------------------- /modules/integrations/cache-redis/src/test/scala/free/TestContext.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/cache-redis/src/test/scala/free/TestContext.scala -------------------------------------------------------------------------------- /modules/integrations/cache-redis/src/test/scala/free/TestUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/cache-redis/src/test/scala/free/TestUtil.scala -------------------------------------------------------------------------------- /modules/integrations/doobie/src/main/scala/free/doobie.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/doobie/src/main/scala/free/doobie.scala -------------------------------------------------------------------------------- /modules/integrations/doobie/src/test/scala/free/DoobieTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/doobie/src/test/scala/free/DoobieTests.scala -------------------------------------------------------------------------------- /modules/integrations/fetch/shared/src/main/scala/free/fetch.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/fetch/shared/src/main/scala/free/fetch.scala -------------------------------------------------------------------------------- /modules/integrations/fetch/shared/src/test/scala/free/FetchTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/fetch/shared/src/test/scala/free/FetchTests.scala -------------------------------------------------------------------------------- /modules/integrations/fs2/shared/src/main/scala/free/fs2.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/fs2/shared/src/main/scala/free/fs2.scala -------------------------------------------------------------------------------- /modules/integrations/fs2/shared/src/test/scala/free/Fs2Tests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/fs2/shared/src/test/scala/free/Fs2Tests.scala -------------------------------------------------------------------------------- /modules/integrations/http/akka/src/main/scala/free/http/akkahttp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/http/akka/src/main/scala/free/http/akkahttp.scala -------------------------------------------------------------------------------- /modules/integrations/http/akka/src/test/scala/free/http/AkkaHttpTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/http/akka/src/test/scala/free/http/AkkaHttpTests.scala -------------------------------------------------------------------------------- /modules/integrations/http/finch/src/main/scala/free/http/finch.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/http/finch/src/main/scala/free/http/finch.scala -------------------------------------------------------------------------------- /modules/integrations/http/finch/src/test/scala/free/http/FinchTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/http/finch/src/test/scala/free/http/FinchTests.scala -------------------------------------------------------------------------------- /modules/integrations/http/http-client/shared/src/main/scala/free/http/free.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/http/http-client/shared/src/main/scala/free/http/free.scala -------------------------------------------------------------------------------- /modules/integrations/http/http-client/shared/src/test/scala/free/http/ClientTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/http/http-client/shared/src/test/scala/free/http/ClientTests.scala -------------------------------------------------------------------------------- /modules/integrations/http/http4s/src/main/scala/free/http/http4s.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/http/http4s/src/main/scala/free/http/http4s.scala -------------------------------------------------------------------------------- /modules/integrations/http/http4s/src/test/scala/free/http/Http4sTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/http/http4s/src/test/scala/free/http/Http4sTest.scala -------------------------------------------------------------------------------- /modules/integrations/http/play/src/main/scala/free/http/play.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/http/play/src/main/scala/free/http/play.scala -------------------------------------------------------------------------------- /modules/integrations/http/play/src/test/scala/free/http/PlayTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/http/play/src/test/scala/free/http/PlayTests.scala -------------------------------------------------------------------------------- /modules/integrations/monix/src/main/scala/free/monix.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/monix/src/main/scala/free/monix.scala -------------------------------------------------------------------------------- /modules/integrations/slick/src/main/scala/free/slick.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/slick/src/main/scala/free/slick.scala -------------------------------------------------------------------------------- /modules/integrations/slick/src/test/scala/free/SlickTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/slick/src/test/scala/free/SlickTests.scala -------------------------------------------------------------------------------- /modules/integrations/twitter-util/src/main/scala/free/util.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/twitter-util/src/main/scala/free/util.scala -------------------------------------------------------------------------------- /modules/integrations/twitter-util/src/test/scala/free/TwitterUtilTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/integrations/twitter-util/src/test/scala/free/TwitterUtilTests.scala -------------------------------------------------------------------------------- /modules/logging/js/src/main/scala/free/loggingJS.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/js/src/main/scala/free/loggingJS.scala -------------------------------------------------------------------------------- /modules/logging/js/src/main/scala/tagless/loggingJS.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/js/src/main/scala/tagless/loggingJS.scala -------------------------------------------------------------------------------- /modules/logging/js/src/test/scala/free/LoggingTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/js/src/test/scala/free/LoggingTests.scala -------------------------------------------------------------------------------- /modules/logging/js/src/test/scala/tagless/LoggingTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/js/src/test/scala/tagless/LoggingTests.scala -------------------------------------------------------------------------------- /modules/logging/jvm/src/main/scala/free/implicits.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/jvm/src/main/scala/free/implicits.scala -------------------------------------------------------------------------------- /modules/logging/jvm/src/main/scala/free/journal.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/jvm/src/main/scala/free/journal.scala -------------------------------------------------------------------------------- /modules/logging/jvm/src/main/scala/free/log4s.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/jvm/src/main/scala/free/log4s.scala -------------------------------------------------------------------------------- /modules/logging/jvm/src/main/scala/tagless/implicits.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/jvm/src/main/scala/tagless/implicits.scala -------------------------------------------------------------------------------- /modules/logging/jvm/src/main/scala/tagless/journal.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/jvm/src/main/scala/tagless/journal.scala -------------------------------------------------------------------------------- /modules/logging/jvm/src/main/scala/tagless/log4s.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/jvm/src/main/scala/tagless/log4s.scala -------------------------------------------------------------------------------- /modules/logging/jvm/src/test/scala/free/LoggingTestsJournal.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/jvm/src/test/scala/free/LoggingTestsJournal.scala -------------------------------------------------------------------------------- /modules/logging/jvm/src/test/scala/free/LoggingTestsLog4s.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/jvm/src/test/scala/free/LoggingTestsLog4s.scala -------------------------------------------------------------------------------- /modules/logging/jvm/src/test/scala/tagless/LoggingTestsJournal.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/jvm/src/test/scala/tagless/LoggingTestsJournal.scala -------------------------------------------------------------------------------- /modules/logging/jvm/src/test/scala/tagless/LoggingTestsLog4s.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/jvm/src/test/scala/tagless/LoggingTestsLog4s.scala -------------------------------------------------------------------------------- /modules/logging/shared/src/main/scala/free/logging.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/shared/src/main/scala/free/logging.scala -------------------------------------------------------------------------------- /modules/logging/shared/src/main/scala/logging.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/shared/src/main/scala/logging.scala -------------------------------------------------------------------------------- /modules/logging/shared/src/main/scala/tagless/logging.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/shared/src/main/scala/tagless/logging.scala -------------------------------------------------------------------------------- /modules/logging/shared/src/test/scala/free/algebras.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/shared/src/test/scala/free/algebras.scala -------------------------------------------------------------------------------- /modules/logging/shared/src/test/scala/tagless/algebras.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/logging/shared/src/test/scala/tagless/algebras.scala -------------------------------------------------------------------------------- /modules/tests/src/main/resources/free/pcplodtest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/tests/src/main/resources/free/pcplodtest.scala -------------------------------------------------------------------------------- /modules/tests/src/test/scala/free/MonixParallelTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/tests/src/test/scala/free/MonixParallelTests.scala -------------------------------------------------------------------------------- /modules/tests/src/test/scala/free/Tests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/modules/tests/src/test/scala/free/Tests.scala -------------------------------------------------------------------------------- /project/ProjectPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/project/ProjectPlugin.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.1.6 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /pubring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/pubring.gpg -------------------------------------------------------------------------------- /secring.gpg.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frees-io/freestyle/HEAD/secring.gpg.enc -------------------------------------------------------------------------------- /version.sbt: -------------------------------------------------------------------------------- 1 | version in ThisBuild := "0.8.3-SNAPSHOT" --------------------------------------------------------------------------------