Sha256: 682d18ca839a3b4480a6a8b170496eed59881419cecfd60c4b288794d178f64c

Contents?: true

Size: 971 Bytes

Versions: 284

Compression:

Stored size: 971 Bytes

Contents

class MissingSourceFile < LoadError #:nodoc:
  attr_reader :path
  def initialize(message, path)
    super(message)
    @path = path
  end

  def is_missing?(path)
    path.gsub(/\.rb$/, '') == self.path.gsub(/\.rb$/, '')
  end

  def self.from_message(message)
    REGEXPS.each do |regexp, capture|
      match = regexp.match(message)
      return MissingSourceFile.new(message, match[capture]) unless match.nil?
    end
    nil
  end

  REGEXPS = [
    [/^no such file to load -- (.+)$/i, 1],
    [/^Missing \w+ (file\s*)?([^\s]+.rb)$/i, 2],
    [/^Missing API definition file in (.+)$/i, 1]
  ] unless defined?(REGEXPS)
end

module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module LoadErrorExtensions #:nodoc:
      module LoadErrorClassMethods #:nodoc:
        def new(*args)
          (self == LoadError && MissingSourceFile.from_message(args.first)) || super
        end
      end
      ::LoadError.extend(LoadErrorClassMethods)
    end
  end
end

Version data entries

284 entries across 251 versions & 30 rubygems

Version Path
3mix-castronaut-0.5.0.2 vendor/activesupport/lib/active_support/core_ext/load_error.rb
masover-castronaut-0.4.4.4 vendor/activesupport/lib/active_support/core_ext/load_error.rb
masover-castronaut-0.4.4.5 vendor/activesupport/lib/active_support/core_ext/load_error.rb
masover-castronaut-0.5.0.1 vendor/activesupport/lib/active_support/core_ext/load_error.rb
p8-castronaut-0.6.1.1 vendor/activesupport/lib/active_support/core_ext/load_error.rb
relevance-castronaut-0.4.1 vendor/activesupport/lib/active_support/core_ext/load_error.rb
relevance-castronaut-0.4.2 vendor/activesupport/lib/active_support/core_ext/load_error.rb
relevance-castronaut-0.4.3 vendor/activesupport/lib/active_support/core_ext/load_error.rb
relevance-castronaut-0.4.4 vendor/activesupport/lib/active_support/core_ext/load_error.rb
relevance-castronaut-0.4.5 vendor/activesupport/lib/active_support/core_ext/load_error.rb
relevance-castronaut-0.4.6 vendor/activesupport/lib/active_support/core_ext/load_error.rb
relevance-castronaut-0.5.0 vendor/activesupport/lib/active_support/core_ext/load_error.rb
relevance-castronaut-0.5.1 vendor/activesupport/lib/active_support/core_ext/load_error.rb
relevance-castronaut-0.5.2 vendor/activesupport/lib/active_support/core_ext/load_error.rb
relevance-castronaut-0.5.3 vendor/activesupport/lib/active_support/core_ext/load_error.rb
relevance-castronaut-0.5.4 vendor/activesupport/lib/active_support/core_ext/load_error.rb
relevance-castronaut-0.6.0 vendor/activesupport/lib/active_support/core_ext/load_error.rb
relevance-castronaut-0.6.1 vendor/activesupport/lib/active_support/core_ext/load_error.rb
relevance-castronaut-0.7.4 vendor/activesupport/lib/active_support/core_ext/load_error.rb
relevance-castronaut-0.7.5 vendor/activesupport/lib/active_support/core_ext/load_error.rb