public
Description: Easy Rails App config.
Homepage:
Clone URL: git://github.com/stephencelis/app.git
app /
name age message
file History.rdoc Fri Apr 17 17:12:30 -0700 2009 Remember to better ensure immutability. [stephencelis]
file Manifest.txt Fri Apr 17 17:12:30 -0700 2009 Remember to better ensure immutability. [stephencelis]
file README.rdoc Mon Apr 20 10:57:57 -0700 2009 Docs cleanup. [stephencelis]
file Rakefile Thu Apr 02 12:36:20 -0700 2009 First version. [stephencelis]
file app.gemspec Fri Apr 17 17:12:30 -0700 2009 Remember to better ensure immutability. [stephencelis]
directory generators/ Fri Apr 17 11:49:20 -0700 2009 Option to modular configuration files (from "co... [stephencelis]
file install.rb Fri Apr 17 11:49:20 -0700 2009 Option to modular configuration files (from "co... [stephencelis]
directory lib/ Sat May 02 10:04:48 -0700 2009 Avoid a warning. [stephencelis]
directory test/ Fri Apr 17 17:12:30 -0700 2009 Remember to better ensure immutability. [stephencelis]
README.rdoc

App

github.com/stephencelis/app

DESCRIPTION

Move the config out of your app, and into App.

Sure, it’s been done before, and others will do it again, but this is my way, and I like it.

FEATURES/PROBLEMS

  • Easy, environmentally-friendly configuration access.

For mutability, try acts_as_singleton or KVC:

SYNOPSIS

App looks for and loads configuration from "config/app.yml", providing a namespaced API for access.

  App.config # => {"apis"=>{"flickr"=>{ ... }}

Sugar is always sweeter:

  App.config("apis", "flickr") # => App.config["apis"]["flickr"]

Who doesn’t like sugar?

  App["apis", "flickr"]

Sugar, sugar, sugar.

  App.apis("flickr")

Let’s not overdo it, though. App.apis.flickr just doesn’t look right.

REQUIREMENTS

  • Rails 2.3.2 or greater.

INSTALL

With a template:

In existing projects:

  % rake rails:template LOCATION=http://gist.github.com/97629.txt

For new projects:

  % rails newapp -m http://gist.github.com/97629.txt

Or as a gem:

Configure:

  # config/environment.rb
  config.gem "stephencelis-app", :lib     => "app",
                                 :source  => "http://gems.github.com",
                                 :version => ">= 0.2.2"

And install:

  % sudo rake gems:install

Or as a plugin:

Install:

  % script/plugin install git://github.com/stephencelis/app.git

Or submodule:

  % git submodule add git://github.com/stephencelis/app.git vendor/plugins/app

Finally, generate:

  % script/generate app_config

If your "app.yml" gets out of hand, modularize, like in this heavy-handed example:

  % script/generate app_config apis/twitter
        create  config/app/apis
        create  config/app/apis/twitter.yml # Configure me!

Namespaces avoid collisions:

  App::Apis::Twitter.username

LICENSE

(The MIT License)

© 2009-* Stephen Celis, stephen@stephencelis.com.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.