aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/cli/update.rb
diff options
context:
space:
mode:
authorSmit Shah <who828@gmail.com>2014-01-08 08:02:59 +0530
committerSmit Shah <who828@gmail.com>2014-01-08 11:00:31 +0530
commite446339356d3fc951fbbd5ea614fb6bf4fb3e2fe (patch)
tree17d48a4bb362c3254e0a8afbc5490ee342dfaa82 /lib/bundler/cli/update.rb
parentb508f5f830894947560f05d8d7781057ebd8d190 (diff)
downloadbundler-e446339356d3fc951fbbd5ea614fb6bf4fb3e2fe.tar.gz
Use *args instead of args
Diffstat (limited to 'lib/bundler/cli/update.rb')
-rw-r--r--lib/bundler/cli/update.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli/update.rb b/lib/bundler/cli/update.rb
index 22816e05..f549974f 100644
--- a/lib/bundler/cli/update.rb
+++ b/lib/bundler/cli/update.rb
@@ -1,7 +1,7 @@
module Bundler
class CLI::Update
attr_reader :options, :gems
- def initialize(options, gems)
+ def initialize(options, *gems)
@options = options
@gems = gems
end