merb-cache 1.0.12 → 1.0.13

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -31,7 +31,7 @@ spec = Gem::Specification.new do |s|
31
31
  s.author = GEM_AUTHOR
32
32
  s.email = GEM_EMAIL
33
33
  s.homepage = PROJECT_URL
34
- s.add_dependency('merb-core', ">= #{Merb::VERSION}")
34
+ s.add_dependency('merb-core', "~> #{Merb::VERSION}")
35
35
  s.require_path = 'lib'
36
36
  s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,spec}/**/*")
37
37
  end
@@ -158,7 +158,7 @@ describe Merb::Cache::ActionStore do
158
158
  end
159
159
 
160
160
  it "should cache the stats action by team, start_date & end_date parameters" do
161
- start_date, end_date = Time.today.to_s, Time.now.to_s
161
+ start_date, end_date = (Time.now - 60).to_s, Time.now.to_s
162
162
  dispatch_to(MLBScores, :stats, :start_date => start_date, :end_date => end_date)
163
163
 
164
164
  @dummy.data("MLBScores#stats", :team => :all, :start_date => start_date, :end_date => end_date).should == "MLBScores stats(all, #{start_date}, #{end_date})"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: merb-cache
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.12
4
+ version: 1.0.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Burkert
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-06-30 00:00:00 -07:00
12
+ date: 2009-11-03 00:00:00 +00:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -18,9 +18,9 @@ dependencies:
18
18
  version_requirement:
19
19
  version_requirements: !ruby/object:Gem::Requirement
20
20
  requirements:
21
- - - ">="
21
+ - - ~>
22
22
  - !ruby/object:Gem::Version
23
- version: 1.0.12
23
+ version: 1.0.13
24
24
  version:
25
25
  description: Merb plugin that provides caching (page, action, fragment, object)
26
26
  email: ben@benburkert.com
@@ -91,7 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
91
91
  requirements: []
92
92
 
93
93
  rubyforge_project: merb
94
- rubygems_version: 1.3.2
94
+ rubygems_version: 1.3.5
95
95
  signing_key:
96
96
  specification_version: 3
97
97
  summary: Merb plugin that provides caching (page, action, fragment, object)