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-08 09:24:43 -0700
commitf65d963259846d701669405f919b4868917fb7f0 (patch)
tree5dc47638f066430e9b52f9ec9c813b5ee40fadb3
parentaef89a4e3fde6cd538c7f418051a377ca62e1588 (diff)
downloadbundler-f65d963259846d701669405f919b4868917fb7f0.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