I'm using Rails 4.2.3. I would like to update a specific gem (rspec) on the command line, however I can't seem to get it to work.
$ bundle update rspec-rails -version 3.9
No value provided for option '--retry'
$ bundle update rspec-rails -version 3.9 --retry==1
No value provided for option '--retry'
$ bundle update rspec-rails -version 3.9 --retry=1
No value provided for option '--retry'
What's the right way to update a gem to a specific version using the bin/bundle command line tool?