Build status

Redbubble Scala Utilities

Miscellaneous utilities (common code) for building Scala-based services, using Finch. This code was extracted out of the services template used in production at Redbubble for building fast, stateless services in Scala, including the API that powers our iOS app.

If you like this, you might like other open source code from Redbubble (which make use of this project):

Setup

You will need to add something like the following to your build.sbt:

resolvers += Resolver.jcenterRepo

libraryDependencies += "com.redbubble" %% "rb-scala-utils" % "0.2.11"

Release

For contributors, a cheat sheet to making a new release:

$ ... update the README with the upcoming version
$ git commit -m "New things" && git push
$ git tag -a v0.0.3 -m "v0.0.3"
$ git push --tags
$ ./sbt publish

Contributing

Issues and pull requests are welcome. Code contributions should be aligned with the above scope to be included, and include unit tests.