Configatron makes configuring your applications and scripts incredibly easy. No longer is a there a need to use constants or global variables. Now you can use a simple and painless system to configure your life. And, because it's all Ruby, you can do any crazy thing you would like to!
V3 is still a work in progress. It is also a complete rewrite of the library. Because V3 is a rewrite there is a lot that has been thrown out, modified, etc... There is a good chance that some feature or method that you were using doesn't exist, or works differently now. Hopefully you'll find these changes for the best. If not, you know how to submit a Pull Request. :)
One of the more important changes to V3 is that it now resembles more a Hash style interface. You can use [], fetch, each, etc...
Add this line to your application's Gemfile:
gem 'configatron', '3.0.0.rc1'And then execute:
$ bundleOr install it yourself as:
$ gem install configatron --preOnce installed you just need to require it:
require 'configatron'configatron.email = 'me@example.com'
configatron.database.url = "postgres://localhost/foo"Now, anywhere in your code you can do the following:
configatron.email # => "me@example.com"
configatron.database.url # => "postgres://localhost/foo"Viola! Simple as can be.
Now you're saying, what if I want to have a 'default' set of options, but then override them later, based on other information? Simple again. Let's use our above example. We've configured our database.url option to be @postgres://localhost/foo@. The problem with that is that is our production database url, not our development url. Fair enough, all you have to do is redeclare it:
configatron.database.url = "postgres://localhost/foo_development"becomes:
configatron.email # => "me@example.com"
configatron.database.url # => "postgres://localhost/foo_development"Notice how our other configuration parameters haven't changed? Cool, eh?
You can configure Configatron from a hash as well (this is really only useful in testing or for data driven configuration, it's not recommended for actual configuration):
configatron.configure_from_hash(email: {pop: {address: 'pop.example.com', port: 110}}, smtp: {address: 'smtp.example.com'})
configatron.email.pop.address # => 'pop.example.com'
configatron.email.pop.port # => 110
# and so on...YAML is terrible and should be driven from the face of the Earth. Because of this Configatron V3 does not support it. Sorry.
The question that should be on your lips is what I need to have namespaced configuration parameters. It's easy! Configatron allows you to create namespaces.
configatron.website_url = "http://www.example.com"
configatron.email.pop.address = "pop.example.com"
configatron.email.pop.port = 110
configatron.email.smtp.address = "smtp.example.com"
configatron.email.smtp.port = 25
configatron.to_h # => {:website_url=>"http://www.example.com", :email=>{:pop=>{:address=>"pop.example.com", :port=>110}, :smtp=>{:address=>"smtp.example.com", :port=>25}}}Configatron allows you to nest namespaces to your hearts content! Just keep going, it's that easy.
Of course you can update a single parameter n levels deep as well:
configatron.email.pop.address = "pop2.example.com"
configatron.email.pop.address # => "pop2.example.com"
configatron.email.smtp.address # => "smtp.example.com"Configatron will also let you use a block to clean up your configuration. For example the following two ways of setting values are equivalent:
configatron.email.pop.address = "pop.example.com"
configatron.email.pop.port = 110
configatron.email.pop do |pop|
pop.address = "pop.example.com"
pop.port = 110
endSometimes in testing, or other situations, you want to temporarily change some settings. You can do this with the temp method:
configatron.one = 1
configatron.letters.a = 'A'
configatron.letters.b = 'B'
configatron.temp do
configatron.letters.b = 'bb'
configatron.letters.c = 'c'
configatron.one # => 1
configatron.letters.a # => 'A'
configatron.letters.b # => 'bb'
configatron.letters.c # => 'c'
end
configatron.one # => 1
configatron.letters.a # => 'A'
configatron.letters.b # => 'B'
configatron.letters.c # => {}Even if parameters haven't been set, you can still call them, but you'll get a Configatron::Store object back. The Configatron::Store class, however, will respond true to .nil? or .blank? if there are no parameters configured on it.
configatron.i.dont.exist.nil? # => true
configatron.i.dont.exist.blank? # => true
configatron.i.dont.exist # => Configatron::StoreYou can use .has_key? to determine if a key already exists.
configatron.i.dont.has_key?(:exist) # => falseThe configatron "helper" method is store in the Kernel module. Some people didn't like that in the V2 of Configatron, so in V3, while that hasn't changed, you don't have to use it.
Instead of requiring configatron simply require configatron/core, but then you'll have to set up your own Configatron::Store object.
Example:
require 'configatron/core'
store = Configatron::Store.new
store.foo = 'FOO'
store.to_h #= {foo: 'FOO'}Once you have setup all of your configurations you can call the lock! method to lock your settings and raise an error should anyone try to change settings or access an unset setting later.
Example:
configatron.foo = 'FOO'
configatron.lock!
configatron.foo # => 'FOO'
configatron.bar # => raises Configatron::UndefinedKeyError
configatron.bar = 'BAR' # => raises Configatron::LockedErrorConfigatron works great with Rails. Use the built-in generate to generate an initializer file and a series of environment files for you to use to configure your applications.
$ rails generate configatron:installConfigatron will read in the config/configatron/defaults.rb file first and then the environment specific file, such as config/configatron/development.rb. Settings in the environment file will merge into and replace the settings in the defaults.rb file.
# config/configatron/defaults.rb
configatron.letters.a = 'A'
configatron.letters.b = 'B'# config/configatron/development.rb
configatron.letters.b = 'BB'
configatron.letters.c = 'C'configatron.to_h # => {:letters=>{:a=>"A", :b=>"BB", :c=>"C"}}- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Write Tests!
- Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
- Mark Bates
- Kurtis Rainbolt-Greene
- Rob Sanheim
- Greg Brockman
- Cody Maggard
- Jean-Denis Vauguet
- Torsten Schönebaum
- Mat Brown
- Simon Menke
- chatgris
- Gleb Pomykalov
- Casper Gripenberg
- mattelacchiato
- Artiom Diomin
- Tim Riley
- Rick Fletcher
- joe miller
- Brandon Dimcheff
- Dan Pickett
- Josh Nichols

