├── .circleci └── config.yml ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .rspec ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── king_konf.gemspec ├── lib ├── king_konf.rb └── king_konf │ ├── config.rb │ ├── config_file_loader.rb │ ├── decoder.rb │ ├── duration_decoder.rb │ ├── variable.rb │ └── version.rb └── spec ├── config_file_loader_spec.rb ├── config_spec.rb ├── decoder_spec.rb ├── fixtures └── config.yml ├── king_konf_spec.rb ├── spec_helper.rb └── variable_spec.rb /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/bin/setup -------------------------------------------------------------------------------- /king_konf.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/king_konf.gemspec -------------------------------------------------------------------------------- /lib/king_konf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/lib/king_konf.rb -------------------------------------------------------------------------------- /lib/king_konf/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/lib/king_konf/config.rb -------------------------------------------------------------------------------- /lib/king_konf/config_file_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/lib/king_konf/config_file_loader.rb -------------------------------------------------------------------------------- /lib/king_konf/decoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/lib/king_konf/decoder.rb -------------------------------------------------------------------------------- /lib/king_konf/duration_decoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/lib/king_konf/duration_decoder.rb -------------------------------------------------------------------------------- /lib/king_konf/variable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/lib/king_konf/variable.rb -------------------------------------------------------------------------------- /lib/king_konf/version.rb: -------------------------------------------------------------------------------- 1 | module KingKonf 2 | VERSION = "1.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /spec/config_file_loader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/spec/config_file_loader_spec.rb -------------------------------------------------------------------------------- /spec/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/spec/config_spec.rb -------------------------------------------------------------------------------- /spec/decoder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/spec/decoder_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/spec/fixtures/config.yml -------------------------------------------------------------------------------- /spec/king_konf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/spec/king_konf_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/variable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasch/king_konf/HEAD/spec/variable_spec.rb --------------------------------------------------------------------------------