public
Description: Easy Rails App config.
Homepage:
Clone URL: git://github.com/stephencelis/app.git
stephencelis (author)
Sat May 02 10:04:48 -0700 2009
commit  cd91843ccb7f3aee3ed1ec2ffae9327bfe9cfd10
tree    8b1df433cc1b685c16c4202e593ccf7d34bc2228
parent  ba64144a51225e693c387b04b5b29d50afe8b614
app / README.rdoc
100644 137 lines (70 sloc) 3.021 kb

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.