summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-04-07 20:21:27 -0700
committerAndre Arko <andre@arko.net>2015-04-07 20:23:10 -0700
commita26089b76e38780943afc5fad5ddf69da4634ffd (patch)
tree0bd211dcecccb03edbab4da3d3942553c53c0666
parent52625b1a1e25d3145cbe6f6ed19799f55c4049ae (diff)
downloadbundler-a26089b76e38780943afc5fad5ddf69da4634ffd.tar.gz
Revert "Report exceptions while requiring"
This silently hides StandardErrors :( Fixes #3549 This reverts commit f740c40598142d990d59e129293c22c5d6f980b7.
-rw-r--r--lib/bundler/runtime.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/bundler/runtime.rb b/lib/bundler/runtime.rb
index f83cb30742..be61c2b15b 100644
--- a/lib/bundler/runtime.rb
+++ b/lib/bundler/runtime.rb
@@ -88,9 +88,6 @@ module Bundler
raise if $1 != namespaced_file
end
end
- rescue => e
- Bundler.ui.debug e
- Bundler.ui.warn "Unable to require #{required_file}. #{e.class}: #{e.message}."
end
end
end