Sha256: 5a176c0ba5050e45dbdd8a064aeb5e77dac063fac03e31af2b667331466d835e
Contents?: true
Size: 872 Bytes
Versions: 6
Compression:
Stored size: 872 Bytes
Contents
#!/usr/bin/env ruby if ENV['RAILS_VERSION'] =~ /^6.0/ puts "Testing Rails 6.0" exit system('cd spec/dummy_6.0 && bundle install --without debug && rails db:reset && cd ../../ && bundle exec rspec spec') elsif ENV['RAILS_VERSION'] =~ /^5/ puts "Testing Rails #{ENV['RAILS_VERSION']}" exit system("cd spec/dummy_#{ENV['RAILS_VERSION']} && bundle install --without debug && rails db:reset && cd ../../ && bundle exec rspec spec") elsif ENV['RAILS_VERSION'] =~ /^4/ puts "Testing Rails #{ENV['RAILS_VERSION'].to_i}" exit system("cd spec/dummy_#{ENV['RAILS_VERSION'].to_i} && bundle install --without debug && rake db:reset && cd ../../ && bundle exec rspec spec") else puts "Testing Rails 3" exit system('cd spec/dummy && bundle install --without debug && bundle exec rake db:create && bundle exec rake db:migrate && cd ../../ && bundle exec rspec spec') end
Version data entries
6 entries across 6 versions & 3 rubygems