Commit 1e32567ff6f24b426b8073dc27c71f75c6720a70
1 parent
a40fc2e6
Exists in
master
and in
1 other branch
fix issue with timecop gem and ruby 1.8.7
Showing
2 changed files
with
4 additions
and
4 deletions
Show diff stats
Gemfile
... | ... | @@ -118,7 +118,7 @@ group :test do |
118 | 118 | # DatabaseCleaner 1.0.0 drop the support of ruby 1.8.7 |
119 | 119 | gem 'database_cleaner', '~> 0.9.0' |
120 | 120 | gem 'email_spec' |
121 | - gem 'timecop' | |
121 | + gem 'timecop', '0.6.1' # last version compatible to ruby 1.8 | |
122 | 122 | gem 'coveralls', :require => false |
123 | 123 | end |
124 | 124 | ... | ... |
Gemfile.lock
... | ... | @@ -182,7 +182,7 @@ GEM |
182 | 182 | callsite |
183 | 183 | rack-contrib |
184 | 184 | railties |
185 | - method_source (0.8.1) | |
185 | + method_source (0.8.2) | |
186 | 186 | mime-types (1.23) |
187 | 187 | mongo (1.8.6) |
188 | 188 | bson (~> 1.8.6) |
... | ... | @@ -352,7 +352,7 @@ GEM |
352 | 352 | rack (>= 1.0.0) |
353 | 353 | thor (0.18.1) |
354 | 354 | tilt (1.4.1) |
355 | - timecop (0.6.2.2) | |
355 | + timecop (0.6.1) | |
356 | 356 | treetop (1.4.14) |
357 | 357 | polyglot |
358 | 358 | polyglot (>= 0.3.1) |
... | ... | @@ -442,7 +442,7 @@ DEPENDENCIES |
442 | 442 | taskmapper-unfuddle (~> 0.7.0) |
443 | 443 | therubyracer |
444 | 444 | thin |
445 | - timecop | |
445 | + timecop (= 0.6.1) | |
446 | 446 | turbo-sprockets-rails3 |
447 | 447 | uglifier (>= 1.0.3) |
448 | 448 | underscore-rails | ... | ... |