summaryrefslogtreecommitdiff
path: root/lib/bundler/templates
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-07-16 11:31:38 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-03 09:29:59 +0900
commitbd0f19f137a952f5f8b838537f473385b204ed78 (patch)
tree22856b835c0117109a1a5a6f452ecd48bd595865 /lib/bundler/templates
parent3e10b4a0be0de22fc0871a6fab65139c43c69180 (diff)
[bundler/bundler] Don't need 1.8 compatibility
https://github.com/bundler/bundler/commit/7ca4d4e83c
Diffstat (limited to 'lib/bundler/templates')
-rw-r--r--lib/bundler/templates/Executable.bundler3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/bundler/templates/Executable.bundler b/lib/bundler/templates/Executable.bundler
index 3adac41e74..5fe16176f6 100644
--- a/lib/bundler/templates/Executable.bundler
+++ b/lib/bundler/templates/Executable.bundler
@@ -70,8 +70,7 @@ m = Module.new do
def load_bundler!
ENV["BUNDLE_GEMFILE"] ||= gemfile
- # must dup string for RG < 1.8 compatibility
- activate_bundler(bundler_version.dup)
+ activate_bundler(bundler_version)
end
def activate_bundler(bundler_version)