aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/friendly_errors.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler/friendly_errors.rb')
-rw-r--r--lib/bundler/friendly_errors.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/bundler/friendly_errors.rb b/lib/bundler/friendly_errors.rb
index 8838ac84..0a90ca50 100644
--- a/lib/bundler/friendly_errors.rb
+++ b/lib/bundler/friendly_errors.rb
@@ -43,11 +43,11 @@ module Bundler
end
def self.request_issue_report_for(e)
- Bundler.ui.info <<-EOS.gsub(/^ {6}/, '')
+ Bundler.ui.info <<-EOS.gsub(/^ {6}/, "")
--- ERROR REPORT TEMPLATE -------------------------------------------------------
- What did you do?
- I ran the command `#{$PROGRAM_NAME} #{ARGV.join(' ')}`
+ I ran the command `#{$PROGRAM_NAME} #{ARGV.join(" ")}`
- What did you expect to happen?
@@ -70,7 +70,7 @@ module Bundler
Bundler.ui.error "Unfortunately, an unexpected error occurred, and Bundler cannot continue."
- Bundler.ui.warn <<-EOS.gsub(/^ {6}/, '')
+ Bundler.ui.warn <<-EOS.gsub(/^ {6}/, "")
First, try this link to see if there are any existing issue reports for this error:
#{issues_url(e)}
@@ -81,7 +81,7 @@ module Bundler
end
def self.issues_url(exception)
- 'https://github.com/bundler/bundler/search?q=' \
+ "https://github.com/bundler/bundler/search?q=" \
"#{CGI.escape(exception.message.lines.first.chomp)}&type=Issues"
end