Excuse my Rails noobitude. After running bundle install, all my gems install correctly. When I run bundle update, it outputs a list of my installe开发者_运维问答d gems and tells me \"Your bundle is
I have a project using cucumber outside o开发者_C百科f rails. How can I load the gems with the versions specified in my gemfile?Digging through the Bundler website:
I have a Rails 3 app that I am turning into a Rails engine / gem. This engine has some gem dependencies that I have put inside it\'s .gemspec file.
Using Bundler, is there a way to check if there are newer gems available than the versions specified in the Gemfile? In other words, is there a way to check if my gems are up to date without 开发者_开
Gemfile says: gem \'sqlite3\', :groups => [:development, :test] gem \'mysql2\', :group => :production
Isn\'t the point of the project .bundle/config to specify c开发者_高级运维onfig that is relevant to the project?On the bundle-config manpage is says:
How can I use rack 1.3.0 with rails. I tried putting gem \'rack\', \'1.3.0\' 开发者_StackOverflow中文版in Gemfile and did bundle update rack but it says
after I run: bundle install I got: /usr/local/lib/ruby/site_ruby/1.9.1/rubygems.rb:14:in <top (required)>\': undefined methodremove\' for Gem::QuickLoader:Module
I am trying to install a gem from github like this: gem \'omniauth\', :g开发者_运维问答it => \"git://github.com/intridea/omniauth.git\", :require => \"omniauth\"
With Padrino, I created a project with Shoulda as a testing framework. I then backpedaled and removed Shoulda and added RSpec. However, after adding spec/spec.rake and spec/spec_helper.rb, I\'m having