aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2016-12-14 12:31:09 -0500
committerGitHub <noreply@github.com>2016-12-14 12:31:09 -0500
commit4ae8595ca25045dd216d9a25e0cdf57da0b9a1ec (patch)
tree1ca91603eec3dfb31763ba16da0ac8429ad75f44 /activesupport/lib
parent44c4b87d0dc5c2b68bdb73220ecc9f7416c20509 (diff)
parent11e05defecde965e0eb1929f1b0f1f992be39a6b (diff)
downloadrails-4ae8595ca25045dd216d9a25e0cdf57da0b9a1ec.tar.gz
rails-4ae8595ca25045dd216d9a25e0cdf57da0b9a1ec.tar.bz2
rails-4ae8595ca25045dd216d9a25e0cdf57da0b9a1ec.zip
Merge pull request #27354 from Shopify/fix-constantize-and-prepended-modules
Fix constantize edge case involving prepend, autoloading and name conflicts
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/inflector/methods.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/inflector/methods.rb b/activesupport/lib/active_support/inflector/methods.rb
index ef3df1240d..fa063af3f4 100644
--- a/activesupport/lib/active_support/inflector/methods.rb
+++ b/activesupport/lib/active_support/inflector/methods.rb
@@ -274,7 +274,7 @@ module ActiveSupport
# Go down the ancestors to check if it is owned directly. The check
# stops when we reach Object or the end of ancestors tree.
- constant = constant.ancestors.inject do |const, ancestor|
+ constant = constant.ancestors.inject(constant) do |const, ancestor|
break const if ancestor == Object
break ancestor if ancestor.const_defined?(name, false)
const