To avoid crashing anything I specify the version number for every gem in my Gemfile:
gem 'sass-rails', '~> 3.1.5'
gem 'coffee-rails', '~> 3.1.1'
gem 'uglifier', '~> 1.0.3'
gem 'haml-rails', "~> 0.3.4"
gem 'simple_form', '~> 1.5.2'
But I want to, at least, know if there are some newer version I haven’t installed. For instance, simple_form 2.0.0 has been released.
I can check each gem on RubyGems, but there must be a automatic tool to do this chore, right?
With the latest version (1.1) of bundler you can do
bundle outdated(see this page.)To update bundler to the latest version you can run
gem update bundlerThere is also the Gemnasium but I have never used it.