diveintohacking
diveintohacking

Reputation: 5183

bundle is identical to bundle install?

I have hit a very simple question as to Bundler command(http://gembundler.com/). Are there any differences between the following two? Or equivalent for them?

$ bundle

vs

$ bundle install

I checked both of Gemfile.lock generated after executing bundle(and bundle install). I surely confirmed both of Gemfile.lock were identical.

Upvotes: 1

Views: 108

Answers (1)

Chris Cashwell
Chris Cashwell

Reputation: 22859

Currently they're identical. Bundler's default action is install. That's subject to change though.

Upvotes: 3

Related Questions