Exception: LoadError
- Inherits:
-
Exception
- Object
- Exception
- LoadError
- Defined in:
- activesupport/lib/active_support/core_ext/load_error.rb
Constant Summary
- REGEXPS =
[ /^no such file to load -- (.+)$/i, /^Missing \w+ (?:file\s*)?([^\s]+.rb)$/i, /^Missing API definition file in (.+)$/i, /^cannot load such file -- (.+)$/i, ]
Instance Method Summary (collapse)
Instance Method Details
- (Boolean) is_missing?(location)
18 19 20 |
# File 'activesupport/lib/active_support/core_ext/load_error.rb', line 18 def is_missing?(location) location.sub(/\.rb$/, '') == path.sub(/\.rb$/, '') end |
- (Object) path
9 10 11 12 13 14 15 16 |
# File 'activesupport/lib/active_support/core_ext/load_error.rb', line 9 def path @path ||= begin REGEXPS.find do |regex| =~ regex end $1 end end |