Sha256: 2a1287168e2c405980df9a7db5f54e345d3c0abae2c0634801e12ac59d0b69ee

Contents?: true

Size: 444 Bytes

Versions: 4

Compression:

Stored size: 444 Bytes

Contents

#!/usr/bin/env ruby

if ENV['RAILS_VERSION'] =~ /^4/
  puts "Testing Rails 4"
  exit system('cd spec/dummy_4 && bundle install --without debug && bundle exec rake db:create && bundle exec rake db:migrate && 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

4 entries across 4 versions & 1 rubygems

Version Path
axlsx_rails-0.4.0 spec/ci.rb
axlsx_rails-0.3.0 spec/ci.rb
axlsx_rails-0.2.1 spec/ci.rb
axlsx_rails-0.2.0 spec/ci.rb