Update gems in generated rails app.

This commit is contained in:
Gabe Berke-Williams 2012-04-09 21:03:58 -04:00
parent 2e73b351bb
commit ac56a1aefd
1 changed files with 2 additions and 2 deletions

View File

@ -43,12 +43,12 @@ When /^I run the rspec generator$/ do
end
When /^I configure the application to use rspec\-rails$/ do
append_to_gemfile "gem 'rspec-rails', '~> 2.6.1.beta1'"
append_to_gemfile "gem 'rspec-rails', '~> 2.6.1'"
steps %{And I run `bundle install --local`}
end
When /^I configure the application to use shoulda-context$/ do
append_to_gemfile "gem 'shoulda-context', '~> 1.0.0.beta1'"
append_to_gemfile "gem 'shoulda-context', '~> 1.0.0'"
steps %{And I run `bundle install --local`}
end