Rakefile in secure_headers-2.3.0 vs Rakefile in secure_headers-2.4.0
- old
+ new
@@ -13,20 +13,20 @@
task :default => :all_spec
desc "Run all specs, and test fixture apps"
task :all_spec => :spec do
pwd = Dir.pwd
- Dir.chdir 'fixtures/rails_3_2_12'
+ Dir.chdir 'fixtures/rails_3_2_22'
puts Dir.pwd
str = `bundle install >> /dev/null; bundle exec rspec spec`
puts str
unless $? == 0
Dir.chdir pwd
fail "Header tests with app not using initializer failed exit code: #{$?}"
end
Dir.chdir pwd
- Dir.chdir 'fixtures/rails_3_2_12_no_init'
+ Dir.chdir 'fixtures/rails_3_2_22_no_init'
puts Dir.pwd
puts `bundle install >> /dev/null; bundle exec rspec spec`
unless $? == 0
fail "Header tests with app not using initializer failed"