├── .gitignore ├── .rspec ├── .rubocop.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── runtime_config.rb └── runtime_config │ ├── conf.html.erb │ ├── conf_param.rb │ ├── middleware.rb │ └── version.rb ├── runtime_config.gemspec └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | _misc/ 2 | Gemfile.lock 3 | *.orig 4 | .rubocop-* 5 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --order random 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/runtime_config/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/runtime_config/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/runtime_config/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/runtime_config/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler/gem_tasks' 2 | -------------------------------------------------------------------------------- /lib/runtime_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/runtime_config/HEAD/lib/runtime_config.rb -------------------------------------------------------------------------------- /lib/runtime_config/conf.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/runtime_config/HEAD/lib/runtime_config/conf.html.erb -------------------------------------------------------------------------------- /lib/runtime_config/conf_param.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/runtime_config/HEAD/lib/runtime_config/conf_param.rb -------------------------------------------------------------------------------- /lib/runtime_config/middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/runtime_config/HEAD/lib/runtime_config/middleware.rb -------------------------------------------------------------------------------- /lib/runtime_config/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module RuntimeConfig 4 | VERSION = '0.2.2'.freeze 5 | end 6 | -------------------------------------------------------------------------------- /runtime_config.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/runtime_config/HEAD/runtime_config.gemspec -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebulab/runtime_config/HEAD/screenshot.png --------------------------------------------------------------------------------