wallet 1.0.0.beta.1 → 1.0.0.beta.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/wallet/cash.rb +1 -1
  2. data/readme.markdown +1 -1
  3. metadata +3 -3
@@ -7,7 +7,7 @@ module Wallet
7
7
  Wallet::Configuration.controllers.each do |controller_name, actions_configs|
8
8
  controller = "#{controller_name}_controller".camelize.constantize
9
9
  actions_configs.actions.each do |action_name, ttl|
10
- controller.caches_action action_name, ttl
10
+ controller.caches_action action_name, :expires_in => ttl
11
11
  end
12
12
  end
13
13
  end
@@ -8,7 +8,7 @@ Wallet is a gem, available from http://rubygems.org.
8
8
 
9
9
  Add the following to your Rails 3 app's Gemfile:
10
10
 
11
- gem 'wallet', '~> 1.0.0.beta.1'
11
+ gem 'wallet', '~> 1.0.0.beta.2'
12
12
 
13
13
  ## Usage
14
14
 
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wallet
3
3
  version: !ruby/object:Gem::Version
4
- hash: 62196353
4
+ hash: 62196359
5
5
  prerelease: 6
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
9
  - 0
10
10
  - beta
11
- - 1
12
- version: 1.0.0.beta.1
11
+ - 2
12
+ version: 1.0.0.beta.2
13
13
  platform: ruby
14
14
  authors:
15
15
  - Matt Parker