YAML settings for your Rails 3 app.
Yettings allows you to add a yml file to your “config” directory and you can access the values defined in the YAML in your Rails app. You can use this to store API keys, constants, and other key/value pairs. This plugin was heavily inspired by settingslogic, with a few differences… You don’t have to add a class and point to the YML file. The Yetting class will be created dynamically and will be available to your Rails app. This plugin is also more basic than settingslogic. It does not have support for dynamic setting creation… only the values in the yetting.yml will be available.
There is a branch for 1.8.7, but it has not been merged into master. If you want to use it, you can reference the github location and branch in your Gemfile. See the issue tracker for more details
This bug can cause issues loading the YAML keys when using Yettings. The workaround is to set your YAML parser to sych if your environment is currently using psych:
YAML::ENGINE.yamler = "syck"
More info here: pivotallabs.com/users/mkocher/blog/articles/1692-yaml-psych-and-ruby-1-9-2-p180-here-there-be-dragons
This issue is fixed in ruby-1.9.2-p271.
Add this to your Gemfile
gem "yettings"
Install with Bundler
bundle install
-
Create a YAML file inside /your_rails_app/config called yetting.yml
-
If you want to namespace your Yettings, create a YAML file inside /your_rails_app/config/yettings/ and call it whatever you want.
You can define key/value pairs in the YAML file and these will be available in your app. You can set the defaults and any environment specific values. The file must contain each environment that you will use in your Rails app. Here is a sample:
defaults: &defaults api_key: asdf12345lkj some_number: 999 an_erb_yetting: <%= "erb stuff works" %> some_array: - element1 - element2 development: <<: *defaults api_key: api key for dev test: <<: *defaults production: <<: *defaults
In the above example, you can define the key/value pair using strings, numbers, erb code, or arrays. Notice that the “api_key” in the development environment will override the “api_key” from defaults.
You simply call the Yetting class or the namespaced class and the key as a class method. For namespaced yml files, Yettings will convert the filename in /your_rails_app/config/yettings/ to a class name and append Yetting. So if you have main.yml, then it will use MainYetting as the class name. Then you can call the key that you put in the YAML as a class method. Here are 2 examples:
#/your_rails_app/config/yetting.yml in production Yetting.some_number #=> 999 Yetting.api_key #=> "asdf12345lkj" #/your_rails_app/config/yettings/main.yml MainYetting.some_number #=> 999 MainYetting.some_array #=> ["element1","element2"]
-
Check out the latest master to make sure the feature hasn’t been implemented or the bug hasn’t been fixed yet
-
Check out the issue tracker to make sure someone already hasn’t requested it and/or contributed it
-
Fork the project
-
Start a feature/bugfix branch
-
Commit and push until you are happy with your contribution
-
Make sure to add tests for it. I will not even look at patches without a test included.
-
Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
Copyright © 2011 cowboycoded. See LICENSE.txt for further details.