summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolay Burlov <kohgpat@gmail.com>2015-03-10 14:02:13 +0800
committerNikolay Burlov <kohgpat@gmail.com>2015-03-10 14:02:13 +0800
commit4ba2f6306ebfec9b675c5bc3c4a7fab3317e62fd (patch)
tree59c58847b815f3851da1f38926ac8234b1c191c0
parentdc0e847bc88554ebb40367dd18432f99d3097686 (diff)
downloadbundler-4ba2f6306ebfec9b675c5bc3c4a7fab3317e62fd.tar.gz
Remove unused dups
-rw-r--r--lib/bundler/cli/install.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli/install.rb b/lib/bundler/cli/install.rb
index 43dd40a500..4d6715120b 100644
--- a/lib/bundler/cli/install.rb
+++ b/lib/bundler/cli/install.rb
@@ -2,7 +2,7 @@ module Bundler
class CLI::Install
attr_reader :options
def initialize(options)
- @options = options.dup
+ @options = options
end
def run