diff options
author | Xavier Noria <fxn@hashref.com> | 2013-08-27 00:24:17 -0700 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2013-08-27 00:24:17 -0700 |
commit | af3a69a783ea810d0045a6106f6c59573984f2ff (patch) | |
tree | a4272b7b2414f1986d82d37c5ac0593e12035f50 /activesupport/test/autoloading_fixtures/html | |
parent | 701664b56b69827bfb46a5acfddf81d3a81b5d09 (diff) | |
parent | b4a96686267c8bb261eca21c02acab9fd5f7ca96 (diff) | |
download | rails-af3a69a783ea810d0045a6106f6c59573984f2ff.tar.gz rails-af3a69a783ea810d0045a6106f6c59573984f2ff.tar.bz2 rails-af3a69a783ea810d0045a6106f6c59573984f2ff.zip |
Merge pull request #11636 from urbanautomaton/uppercase-nested-const-autoload-marking
`ActiveSupport::Dependencies`: consts in uppercase nestings not marked as autoloaded
Diffstat (limited to 'activesupport/test/autoloading_fixtures/html')
-rw-r--r-- | activesupport/test/autoloading_fixtures/html/some_class.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/activesupport/test/autoloading_fixtures/html/some_class.rb b/activesupport/test/autoloading_fixtures/html/some_class.rb new file mode 100644 index 0000000000..b43d15d891 --- /dev/null +++ b/activesupport/test/autoloading_fixtures/html/some_class.rb @@ -0,0 +1,4 @@ +module HTML + class SomeClass + end +end |