For a large project, it’s nice from a systems administration point of view to be able to quickly manage caching in a single place. Having a central YAML file for managing action caching also opens up the possibility of creating backend web interfaces for your application that could allow site administrators of your app to manage the TTL’s from anywhere.
rails >= 2.3.3 (but would probably work with earlier version of RAILS that support action caching)
To add wallet to your RAILS app, add a config.gem line like the following to the Rails::Initializer section of your environment.rb:
config.gem "wallet", :lib => 'wallet', :version => '>=0.0.2', :source => "http://gemcutter.org"Then install the missing gem:
bash$ sudo rake gems:install
Wallet distributes under the same terms as Ruby.
Matt Parker
Matt Parker (moonmaster9000@gmail.com)
You can download this project in either zip or tar formats.
You can also clone the project with Git by running:
$ git clone git://github.com/moonmaster9000/wallet