module Configureasy

Configureasy is a easy way to getting configs into you class/model

Example

 class Foo
   include Configureasy
 end
 Foo.config.some_key
 => 'some value'

class Bar
  include Configureasy
  config_name :barz #looks for APP_DIR/config/barz.yml
end

 class FooBar
   include Configureasy
   def internal_access
     value = self.class.some_key
     ...
   end
 end

Constants

VERSION