diff options
author | Samuel Giddins <segiddins@segiddins.me> | 2015-11-26 12:29:42 -0600 |
---|---|---|
committer | Samuel Giddins <segiddins@segiddins.me> | 2015-11-26 12:29:42 -0600 |
commit | 5782a9f536ba4440d74e4d4fcda25b26721982b3 (patch) | |
tree | 23816f305bcbc5b78d63f5327ac03c67f7dda5b7 /lib/bundler/installer | |
parent | f25e6bfc5f2beb2c1b509460c4491b3fb0f7c719 (diff) | |
download | bundler-5782a9f536ba4440d74e4d4fcda25b26721982b3.tar.gz |
[RuboCop] Enable Style/PercentLiteralDelimiters
Diffstat (limited to 'lib/bundler/installer')
-rw-r--r-- | lib/bundler/installer/standalone.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/installer/standalone.rb b/lib/bundler/installer/standalone.rb index 6776dd6200..35ad98891e 100644 --- a/lib/bundler/installer/standalone.rb +++ b/lib/bundler/installer/standalone.rb @@ -15,7 +15,7 @@ module Bundler file.puts "ruby_version = RbConfig::CONFIG[\"ruby_version\"]" file.puts "path = File.expand_path('..', __FILE__)" paths.each do |path| - file.puts %{$:.unshift "\#{path}/#{path}"} + file.puts %($:.unshift "\#{path}/#{path}") end end end |