instance method try_to_load_dependency

Ruby on Rails 3.2.22.5

Since v2.3.18 Last seen in v4.1.16

Available in: v2.3.18 v3.0.20 v3.1.12 v3.2.22.5 v4.0.13 v4.1.16

Signature

try_to_load_dependency(file_name)

No documentation comment.

Parameters

file_name req
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

Type at least 2 characters to search.

↑↓ navigate · open · esc close