aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/dependencies/raises_exception_without_blame_file.rb
Commit message (Collapse)AuthorAgeFilesLines
* applies new string literal convention in activesupport/testXavier Noria2016-08-061-1/+1
| | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
* Don't blindly call blame_file! on exceptions in ↵Andrew Kreiling2013-06-091-0/+5
ActiveSupport::Dependencies::Loadable It is possible under some environments to receive an Exception that is not extended with Blamable (e.g. JRuby). ActiveSupport::Dependencies::Loadable#load_dependency blindly call blame_file! on the exception which throws it's own NoMethodError exception and hides the original Exception. This commit fixes #9521