diff --git a/Appraisals b/Appraisals index 5d7b13c..786d525 100644 --- a/Appraisals +++ b/Appraisals @@ -8,4 +8,5 @@ end appraise 'rails-3-0' do gem 'rails', '~> 3.0.0' + gem 'rack-test', '~> 0.5.7' end diff --git a/gemfiles/rails-3-0.gemfile b/gemfiles/rails-3-0.gemfile index eaf7f8d..281ea06 100644 --- a/gemfiles/rails-3-0.gemfile +++ b/gemfiles/rails-3-0.gemfile @@ -3,5 +3,6 @@ source "http://rubygems.org" gem "rails", "~> 3.0.0" +gem "rack-test", "~> 0.5.7" gemspec :path=>"../" \ No newline at end of file diff --git a/test/app/Gemfile b/test/app/Gemfile index bdb1442..93c0464 100644 --- a/test/app/Gemfile +++ b/test/app/Gemfile @@ -2,5 +2,5 @@ source 'http://rubygems.org' gem 'rails', ENV['RAILS_VERSION'] || '~> 3.2.1' gem 'focused_controller', :path => '../..' -gem 'rspec', '~> 2.8' -gem 'rspec-rails', '~> 2.8' +gem 'rspec' +gem 'rspec-rails'