aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/activesupport.gemspec
diff options
context:
space:
mode:
authorJeremy Daer <jeremydaer@gmail.com>2016-05-02 15:04:59 -0700
committerJeremy Daer <jeremydaer@gmail.com>2016-05-02 15:05:03 -0700
commit06dc3fba4623a77e3cc7fa04f97723462d47bf1e (patch)
tree2b8fdc598c66b0f9f89915ef215daa5f2e291e35 /activesupport/activesupport.gemspec
parent98264a1343fad6bb6637893a37fd571916b4158c (diff)
downloadrails-06dc3fba4623a77e3cc7fa04f97723462d47bf1e.tar.gz
rails-06dc3fba4623a77e3cc7fa04f97723462d47bf1e.tar.bz2
rails-06dc3fba4623a77e3cc7fa04f97723462d47bf1e.zip
Fix template resolver cache concurrency: "can't add a new key into hash during iteration"
Resolved by https://github.com/ruby-concurrency/concurrent-ruby/pull/529 Fixes #24627.
Diffstat (limited to 'activesupport/activesupport.gemspec')
-rw-r--r--activesupport/activesupport.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/activesupport.gemspec b/activesupport/activesupport.gemspec
index 71fe4d7253..c6ca969844 100644
--- a/activesupport/activesupport.gemspec
+++ b/activesupport/activesupport.gemspec
@@ -23,5 +23,5 @@ Gem::Specification.new do |s|
s.add_dependency 'i18n', '~> 0.7'
s.add_dependency 'tzinfo', '~> 1.1'
s.add_dependency 'minitest', '~> 5.1'
- s.add_dependency 'concurrent-ruby', '~> 1.0'
+ s.add_dependency 'concurrent-ruby', '~> 1.0', '>= 1.0.2'
end