diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2012-04-16 08:55:43 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2012-04-16 08:55:43 -0700 |
commit | 625f4b9199df47a40d1ffde6603e01cc753d06e0 (patch) | |
tree | b80d3db555055fd255ac385af9b4a2e354b0567a /activesupport/activesupport.gemspec | |
parent | 4db5b5554269d366fe391542f189b102d88226b4 (diff) | |
download | rails-625f4b9199df47a40d1ffde6603e01cc753d06e0.tar.gz rails-625f4b9199df47a40d1ffde6603e01cc753d06e0.tar.bz2 rails-625f4b9199df47a40d1ffde6603e01cc753d06e0.zip |
Relax multi_json dependency to allow any 1.3 -> 1.x instead of just 1.3.x
Diffstat (limited to 'activesupport/activesupport.gemspec')
-rw-r--r-- | activesupport/activesupport.gemspec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/activesupport.gemspec b/activesupport/activesupport.gemspec index 4228a24d5e..2c874e932e 100644 --- a/activesupport/activesupport.gemspec +++ b/activesupport/activesupport.gemspec @@ -19,6 +19,6 @@ Gem::Specification.new do |s| s.rdoc_options.concat ['--encoding', 'UTF-8'] s.add_dependency('i18n', '~> 0.6') - s.add_dependency('multi_json', '~> 1.3.0') + s.add_dependency('multi_json', '~> 1.3') s.add_dependency('tzinfo', '~> 0.3.31') end |