instance method
try_to_load_dependency
Ruby on Rails 3.2.22.5
Since v2.3.18 Last seen in v4.1.16Signature
try_to_load_dependency(file_name)
No documentation comment.
Parameters
-
file_namereq
Source
# File activerecord/lib/active_record/fixtures.rb, line 766
def try_to_load_dependency(file_name)
require_dependency file_name
rescue LoadError => e
# Let's hope the developer has included it himself
# Let's warn in case this is a subdependency, otherwise
# subdependency error messages are totally cryptic
if ActiveRecord::Base.logger
ActiveRecord::Base.logger.warn("Unable to load #{file_name}, underlying cause #{e.message} \n\n #{e.backtrace.join("\n")}")
end
end
Defined in activerecord/lib/active_record/fixtures.rb line 766
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::TestFixtures::ClassMethods