├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── pom.xml ├── pom_2.8.1.xml ├── pom_2.9.0-1.xml └── src ├── main └── scala │ └── com │ └── codahale │ └── fig │ └── Configuration.scala └── test ├── resources └── example.json └── scala └── com └── codahale └── fig └── tests └── ConfigurationSpec.scala /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codahale/fig/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codahale/fig/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codahale/fig/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codahale/fig/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codahale/fig/HEAD/pom.xml -------------------------------------------------------------------------------- /pom_2.8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codahale/fig/HEAD/pom_2.8.1.xml -------------------------------------------------------------------------------- /pom_2.9.0-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codahale/fig/HEAD/pom_2.9.0-1.xml -------------------------------------------------------------------------------- /src/main/scala/com/codahale/fig/Configuration.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codahale/fig/HEAD/src/main/scala/com/codahale/fig/Configuration.scala -------------------------------------------------------------------------------- /src/test/resources/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codahale/fig/HEAD/src/test/resources/example.json -------------------------------------------------------------------------------- /src/test/scala/com/codahale/fig/tests/ConfigurationSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codahale/fig/HEAD/src/test/scala/com/codahale/fig/tests/ConfigurationSpec.scala --------------------------------------------------------------------------------