summaryrefslogtreecommitdiff
path: root/lib/bundler/installer.rb
diff options
context:
space:
mode:
authorCharles Lowell <cowboyd@thefrontside.net>2011-12-12 22:45:45 -0600
committerCharles Lowell <cowboyd@thefrontside.net>2011-12-12 22:45:45 -0600
commit08f6f8a52732657f045d198ed34ac2c07ca6e12a (patch)
tree68290677f1a224ac8e7c8889fb832049e36279e1 /lib/bundler/installer.rb
parent7a4337971f805bc10c0a60015d358f613d56b220 (diff)
downloadbundler-08f6f8a52732657f045d198ed34ac2c07ca6e12a.tar.gz
don't change string quotation conventions.
Diffstat (limited to 'lib/bundler/installer.rb')
-rw-r--r--lib/bundler/installer.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index f8a7e767af..8fd690202c 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -96,7 +96,7 @@ module Bundler
def generate_bundler_executable_stubs(spec)
bin_path = Bundler.bin_path
- template = File.read(File.expand_path("../templates/Executable", __FILE__))
+ template = File.read(File.expand_path('../templates/Executable', __FILE__))
relative_gemfile_path = Bundler.default_gemfile.relative_path_from(bin_path)
ruby_command = Thor::Util.ruby_command
@@ -110,7 +110,7 @@ module Bundler
def generate_standalone_bundler_executable_stubs(spec)
bin_path = Bundler.bin_path
- template = File.read(File.expand_path("../templates/Executable.standalone", __FILE__))
+ template = File.read(File.expand_path('../templates/Executable.standalone', __FILE__))
ruby_command = Thor::Util.ruby_command
spec.executables.each do |executable|