diff options
Diffstat (limited to 'activesupport/test/autoloading_fixtures/a')
-rw-r--r-- | activesupport/test/autoloading_fixtures/a/b.rb | 1 | ||||
-rw-r--r-- | activesupport/test/autoloading_fixtures/a/c/d.rb | 1 | ||||
-rw-r--r-- | activesupport/test/autoloading_fixtures/a/c/em/f.rb | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/activesupport/test/autoloading_fixtures/a/b.rb b/activesupport/test/autoloading_fixtures/a/b.rb index 0dbbbbd181..8f2d83719d 100644 --- a/activesupport/test/autoloading_fixtures/a/b.rb +++ b/activesupport/test/autoloading_fixtures/a/b.rb @@ -1,2 +1,3 @@ +# frozen_string_literal: true class A::B end diff --git a/activesupport/test/autoloading_fixtures/a/c/d.rb b/activesupport/test/autoloading_fixtures/a/c/d.rb index 2c0ec5f182..fd50bb95c6 100644 --- a/activesupport/test/autoloading_fixtures/a/c/d.rb +++ b/activesupport/test/autoloading_fixtures/a/c/d.rb @@ -1,2 +1,3 @@ +# frozen_string_literal: true class A::C::D end diff --git a/activesupport/test/autoloading_fixtures/a/c/em/f.rb b/activesupport/test/autoloading_fixtures/a/c/em/f.rb index 3ff1b7efa0..298b63c916 100644 --- a/activesupport/test/autoloading_fixtures/a/c/em/f.rb +++ b/activesupport/test/autoloading_fixtures/a/c/em/f.rb @@ -1,2 +1,3 @@ +# frozen_string_literal: true class A::C::EM::F end |