Skip to content
This repository has been archived by the owner on Aug 17, 2022. It is now read-only.

Commit

Permalink
Add contributors file
Browse files Browse the repository at this point in the history
  • Loading branch information
ceedubs committed May 3, 2014
1 parent fa38c3a commit bb5046c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CONTRIBUTORS.md
@@ -0,0 +1,7 @@
# Contributors #

Many thanks to those who have contributed to Ficus.

* Kelsey Gilmore-Innis: unit tests
* Thomas Dufour: value reader for `ConfigValue` and unit tests
* Cody Allen: core maintainer
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -93,3 +93,9 @@ Arbitrary type support requires Scala 2.10.2 or higher, because it takes advanta

# Custom extraction #
When you call `as[String]("somePath")`, Ficus config knows how to extract a String because there is an implicit `ValueReader[String]` in scope. If you would like, you can even teach it how to extract a `Foo` from the config using `as[Foo]("fooPath")` if you create your own `ValueReader[Foo]`. You could pass this Foo extractor explicitly to the `as` method, but most likely you just want to make it implicit. For an example of a custom value reader, see the `ValueReader[ServiceConfig]` defined in [ExampleSpec](https://github.com/ceedubs/ficus/blob/master/src/test/scala/net/ceedubs/ficus/ExampleSpec.scala).

# Contributions #

Many thanks to all of [those who have contributed](https://github.com/ceedubs/ficus/blob/develop/CONTRIBUTORS.md) to Ficus.

Would you like to contribute to Ficus? Pull requests are welcome and encouraged! Please note that contributions will be under the [MIT license](https://github.com/ceedubs/ficus/blob/develop/LICENSE). Please provide unit tests along with code contributions.

0 comments on commit bb5046c

Please sign in to comment.