Skip to content

Commit

Permalink
Don't use shoulda-matchers/should-context from Github master.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabe Berke-Williams committed Mar 23, 2012
1 parent 34d9f4a commit 6f3b7b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions features/step_definitions/rails_steps.rb
Expand Up @@ -32,19 +32,19 @@
end

When /^I configure the application to use shoulda-context$/ do
append_to_gemfile "gem 'shoulda-context', :git => 'git@github.com:thoughtbot/shoulda-context.git'"
append_to_gemfile "gem 'shoulda-context'"
steps %{And I run `bundle install --local`}
end

When /^I configure the application to use shoulda$/ do
append_to_gemfile "gem 'shoulda-matchers', :git => 'git@github.com:thoughtbot/shoulda-matchers.git', :require => false"
append_to_gemfile "gem 'shoulda-context', :git => 'git@github.com:thoughtbot/shoulda-context.git', :require => false"
append_to_gemfile "gem 'shoulda-matchers', '~> 1.0.0', :require => false"
append_to_gemfile "gem 'shoulda-context', '~> 1.0.0', :require => false"
append_to_gemfile "gem 'shoulda', :path => '../../..'"
steps %{And I run `bundle install --local`}
end

When /^I configure the application to use shoulda-matchers$/ do
append_to_gemfile "gem 'shoulda-matchers', :git => 'git@github.com:thoughtbot/shoulda-matchers.git'"
append_to_gemfile "gem 'shoulda-matchers', '~> 1.0.0'"
steps %{And I run `bundle install --local`}
end

Expand Down

0 comments on commit 6f3b7b4

Please sign in to comment.