1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Requires JSON gem version 1.7.7 or above as it contains an important

security fix.
This commit is contained in:
Godfrey Chan 2013-11-26 22:17:50 -08:00
parent 5fdbec7dd1
commit 78cd3b0e53
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
* Requires JSON gem version 1.7.7 or above due to a security issue in older versions.
*Godfrey Chan*
* Add `ActiveSupport::Testing::TimeHelpers#travel` and `#travel_to`. These methods change current
time to the given time or time difference by stubbing `Time.now` and `Date.today` to return the
time or date after the difference calculation, or the time or date that got passed into the

View file

@ -20,8 +20,8 @@ Gem::Specification.new do |s|
s.rdoc_options.concat ['--encoding', 'UTF-8']
s.add_dependency('i18n', '~> 0.6', '>= 0.6.4')
s.add_dependency 'json', '~> 1.7'
s.add_dependency 'i18n', '~> 0.6', '>= 0.6.4'
s.add_dependency 'json', '~> 1.7', '>= 1.7.7'
s.add_dependency 'tzinfo', '~> 1.1'
s.add_dependency 'minitest', '~> 5.0'
s.add_dependency 'thread_safe','~> 0.1'