gurpal2000
gurpal2000

Reputation: 1082

do i have to run ruby gem update even if i use bundler

Do i have to run ruby gem update even if i use bundler

obviously it's good practice to ensure you have the latest gems, but if im using bundler do i have to bother other than keeping bundler itself up to date via gem update?

Upvotes: 0

Views: 1603

Answers (1)

Flexoid
Flexoid

Reputation: 4245

Bundler manages only application dependencies which specified in Gemfile. If you want to update only this gems, bundler install or bundle update is enough for you. If you want to update all installed gems or bundler itself - use gem update

Upvotes: 2

Related Questions