Config
Easiest way to add multi-environment yaml settings to Rails, Sinatra, Padrino and other Ruby projects.
Install / Use
/learn @rubyconfig/ConfigREADME
Config
Summary
Config helps you easily manage environment specific settings in an easy and usable manner.
Features
- simple YAML config files
- config files support ERB
- config files support inheritance and multiple environments
- access config information via convenient object member notation
- support for multi-level settings (
Settings.group.subgroup.setting) - local developer settings ignored when committing the code
Compatibility
Current version supports and is tested for the following interpreters and frameworks:
- Interpreters
- Ruby
>= 2.6 - JRuby
>= 9.2 - TruffleRuby
>= 19.3
- Ruby
- Application frameworks
- Rails
>= 5.2 - Padrino
- Sinatra
- Rails
For Ruby 2.0 to 2.3 or Rails 3 to 4.1 use version 1.x of this gem. For older versions of Rails or Ruby use AppConfig.
For Ruby 2.4 or 2.5 or Rails 4.2, 5.0, or 5.1 use version 3.x of this gem.
Installing
Installing on Rails
Add gem 'config' to your Gemfile and run bundle install to install it. Then run
rails g config:install
which will generate customizable config file config/initializers/config.rb and set of default settings files:
config/settings.yml
config/settings.local.yml
config/settings/development.yml
config/settings/production.yml
config/settings/test.yml
You can now edit them to adjust to your needs.
Note: By default, the config environment will match the Rails environment (
Rails.env). This can be changed by settingconfig.environment.
Installing on Padrino
Add the gem to your Gemfile and run bundle install to install it. Then edit app.rb and register Config
register Config
Installing on Sinatra
Add the gem to your Gemfile and run bundle install to install it. Afterwards in need to register Config in your app and give it a root so it can find the config files.
set :root, File.dirname(__FILE__)
register Config
Installing on other ruby projects
Add the gem to your Gemfile and run bundle install to install it. Then initialize Config manually within your configure block.
Config.load_and_set_settings(Config.setting_files("/path/to/config_root", "your_project_environment"))
It's also possible to initialize Config manually within your configure block if you want to just give it some yml paths to load from.
Config.load_and_set_settings("/path/to/yaml1", "/path/to/yaml2", ...)
Accessing the Settings object
After installing the gem, Settings object will become available globally and by default will be compiled from the files listed below. Settings defined in files that are lower in the list override settings higher.
config/settings.yml
config/settings/#{environment}.yml
config/environments/#{environment}.yml
config/settings.local.yml
config/settings/#{environment}.local.yml
config/environments/#{environment}.local.yml
Entries can be accessed via object member notation:
Settings.my_config_entry
Nested entries are supported:
Settings.my_section.some_entry
Alternatively, you can also use the [] operator if you don't know which exact setting you need to access ahead of time.
# All the following are equivalent to Settings.my_section.some_entry
Settings.my_section[:some_entry]
Settings.my_section['some_entry']
Settings[:my_section][:some_entry]
Reloading settings
You can reload the Settings object at any time by running Settings.reload!.
Reloading settings and config files
You can also reload the Settings object from different config files at runtime.
For example, in your tests if you want to test the production settings, you can:
Rails.env = "production"
Settings.reload_from_files(
Rails.root.join("config", "settings.yml").to_s,
Rails.root.join("config", "settings", "#{Rails.env}.yml").to_s,
Rails.root.join("config", "environments", "#{Rails.env}.yml").to_s
)
Environment specific config files
You can have environment specific config files. Environment specific config entries take precedence over common config entries.
Example development environment config file:
#{Rails.root}/config/environments/development.yml
Example production environment config file:
#{Rails.root}/config/environments/production.yml
Extra sources
You can load extra sources during initialization by setting the extra_sources configuration option.
Config.setup do |config|
config.extra_sources = [
'path/to/extra_source.yml', # String: loads extra_source.yml
{ api_key: ENV['API_KEY'] }, # Hash: direct hash source
MyCustomSource.new, # Object: custom source object that responds to `load`
]
end
This will also overwrite the same config entries from the main file.
Developer specific config files
If you want to have local settings, specific to your machine or development environment, you can use the following files, which are automatically .gitignore :
Rails.root.join("config", "settings.local.yml").to_s,
Rails.root.join("config", "settings", "#{Rails.env}.local.yml").to_s,
Rails.root.join("config", "environments", "#{Rails.env}.local.yml").to_s
NOTE: The file settings.local.yml will not be loaded in tests to prevent local configuration from causing flaky or non-deterministic tests. Environment-specific files (e.g. settings/test.local.yml) will still be loaded to allow test-specific credentials.
Adding sources at runtime
You can add new YAML config files at runtime. Just use:
Settings.add_source!("/path/to/source.yml")
Settings.reload!
This will use the given source.yml file and use its settings to overwrite any previous ones.
On the other hand, you can prepend a YML file to the list of configuration files:
Settings.prepend_source!("/path/to/source.yml")
Settings.reload!
This will do the same as add_source, but the given YML file will be loaded first (instead of last) and its settings will be overwritten by any other configuration file. This is especially useful if you want to define defaults.
One thing I like to do for my Rails projects is provide a local.yml config file that is .gitignored (so its independent per developer). Then I create a new initializer in config/initializers/add_local_config.rb with the contents
Settings.add_source!("#{Rails.root}/config/settings/local.yml")
Settings.reload!
Note: this is an example usage, it is easier to just use the default local files
settings.local.yml,settings/#{Rails.env}.local.ymlandenvironments/#{Rails.env}.local.ymlfor your developer specific settings.
You also have the option to add a raw hash as a source. One use case might be storing settings in the database or in environment variables that overwrite what is in the YML files.
Settings.add_source!({some_secret: ENV['some_secret']})
Settings.reload!
You may pass a hash to prepend_source! as well.
Embedded Ruby (ERB)
Embedded Ruby is allowed in the YAML configuration files. ERB will be evaluated at load time by default, and when the evaluate_erb_in_yaml configuration is set to true.
Consider the two following config files.
#{Rails.root}/config/settings.yml
size: 1
server: google.com
#{Rails.root}/config/environments/development.yml
size: 2
computed: <%= 1 + 2 + 3 %>
section:
size: 3
servers: [ {name: yahoo.com}, {name: amazon.com} ]
Notice that the environment specific config entries overwrite the common entries.
Settings.size # => 2
Settings.server # => google.com
Notice the embedded Ruby.
Settings.computed # => 6
Notice that object member notation is maintained even in nested entries.
Settings.section.size # => 3
Notice array notation and object member notation is maintained.
Settings.section.servers[0].name # => yahoo.com
Settings.section.servers[1].name # => amazon.com
Configuration
There are multiple configuration options available, however you can customize Config only once, preferably during application initialization phase:
Config.setup do |config|
config.const_name = 'Settings'
# ...
end
After installing Config in Rails, you will find automatically generated file that contains default configuration located at config/initializers/config.rb.
General
const_name- name of the object holding your settings. Default:'Settings'evaluate_erb_in_yaml- evaluate ERB in YAML config files. Set to false if the config file contains ERB that should not be evaluated at load time. Default:truefile_name- name of the file to store general keys accessible in all environments. Default:'settings'- located atconfig/settings.ymldir_name- name of the directory to store environment-specific files. Default:'settings'- located atconfig/settings/
Merge customization
overwrite_arrays- overwrite arrays found in previously loaded settings file. Default:truemerge_hash_arrays- merge hashes inside of arrays from previously loaded settings files. Makes sense only whenoverwrite_arrays = false. Default:falseknockout_prefix- ability to remove elements of the array
