load_glob 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES +4 -0
- data/lib/load_glob.rb +2 -1
- data/load_glob.gemspec +1 -1
- metadata +1 -1
data/CHANGES
CHANGED
data/lib/load_glob.rb
CHANGED
@@ -37,7 +37,8 @@ module LoadGlob
|
|
37
37
|
#
|
38
38
|
# FIXME: If you can understand ActiveSupport's dependencies.rb
|
39
39
|
# better than I do I would *love* to find a better solution
|
40
|
-
raise
|
40
|
+
raise unless ex.message["is not missing constant"]
|
41
|
+
|
41
42
|
STDERR.puts "Warning: load_glob swallowed ActiveSupport 'is not missing constant' error"
|
42
43
|
STDERR.puts ex.backtrace[0..9]
|
43
44
|
end
|
data/load_glob.gemspec
CHANGED