A quick and easy way to group and access your application configuration data.
Add this line to your application's Gemfile:
gem 'quick_config'
And then execute:
$ bundle
Or install it yourself as:
$ gem install quick_config
#Include the gem.
require 'quick_config'
#Set property name/value pairs.
QuickConfig.set do
property :name, "K"
property :age, 12
end
#Read out previously set property
puts QuickConfig.name
puts QuickConfig.age
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request