aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/dependencies.rb
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2016-11-25 15:57:07 +1030
committerGitHub <noreply@github.com>2016-11-25 15:57:07 +1030
commit96a2c96ec3616737d2a8eeced57198206ceb9b14 (patch)
tree05723d6440940976656aec8843935be0f645a99d /activesupport/lib/active_support/dependencies.rb
parentfed3d32ebca06c0f1f88301238ff362c9562816a (diff)
parentd99b3848bb83e147674465a82af1c2dfcc27b9cc (diff)
downloadrails-96a2c96ec3616737d2a8eeced57198206ceb9b14.tar.gz
rails-96a2c96ec3616737d2a8eeced57198206ceb9b14.tar.bz2
rails-96a2c96ec3616737d2a8eeced57198206ceb9b14.zip
Merge pull request #27174 from kamipo/fix_require_dependency_message_format
Fix `require_dependency` message format
Diffstat (limited to 'activesupport/lib/active_support/dependencies.rb')
-rw-r--r--activesupport/lib/active_support/dependencies.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/dependencies.rb b/activesupport/lib/active_support/dependencies.rb
index 0146401abe..e125b657f2 100644
--- a/activesupport/lib/active_support/dependencies.rb
+++ b/activesupport/lib/active_support/dependencies.rb
@@ -242,7 +242,7 @@ module ActiveSupport #:nodoc:
# resolution deterministic for constants with the same relative name in
# different namespaces whose evaluation would depend on load order
# otherwise.
- def require_dependency(file_name, message = "No such file to load -- %s")
+ def require_dependency(file_name, message = "No such file to load -- %s.rb")
file_name = file_name.to_path if file_name.respond_to?(:to_path)
unless file_name.is_a?(String)
raise ArgumentError, "the file name must either be a String or implement #to_path -- you passed #{file_name.inspect}"