32

I've been working with Rails 3 for some time now and never came across an answer for the difference between running bundle and bundle install to install gems in your Gemfile.

Is there any difference between the two commands?

vich
  • 11,836
  • 13
  • 49
  • 66

1 Answers1

33

No. install is just the default option for the bundle command. Don't run either in your Gemfile, however, just specify the gem "fubar" there -- bundler knows how to read and process that file.

Tom Harrison
  • 13,533
  • 3
  • 49
  • 77