aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/rake
diff options
context:
space:
mode:
authorPrem Sichanugrist <s@sikac.hu>2018-02-20 12:40:58 +0900
committerPrem Sichanugrist <s@sikac.hu>2018-03-22 17:06:14 +0000
commit67cc450086ce448b492bdc9208c00234a1cdf949 (patch)
treef2eb9dfa3a21377a66a7fe9567a60b0e7a1f4f88 /railties/test/application/rake
parent4c9c3ffc2e80155f31dbcf80591618ed1c858685 (diff)
downloadrails-67cc450086ce448b492bdc9208c00234a1cdf949.tar.gz
rails-67cc450086ce448b492bdc9208c00234a1cdf949.tar.bz2
rails-67cc450086ce448b492bdc9208c00234a1cdf949.zip
Move SourceAnnotationExtractor under Rails module
This class should be under Rails module as it belongs to Rails.
Diffstat (limited to 'railties/test/application/rake')
-rw-r--r--railties/test/application/rake/notes_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/application/rake/notes_test.rb b/railties/test/application/rake/notes_test.rb
index 8e9fe9b6b4..d73e5cdfa3 100644
--- a/railties/test/application/rake/notes_test.rb
+++ b/railties/test/application/rake/notes_test.rb
@@ -101,7 +101,7 @@ module ApplicationTests
task :notes_custom do
tags = 'TODO|FIXME'
opts = { dirs: %w(lib test), tag: true }
- SourceAnnotationExtractor.enumerate(tags, opts)
+ Rails::SourceAnnotationExtractor.enumerate(tags, opts)
end
EOS