Sha256: 07cf47de0f9415423656bd5b34fb4e2bc91606bc64c94f1c508cd7b0d15435bf
Contents?: true
Size: 452 Bytes
Versions: 6
Compression:
Stored size: 452 Bytes
Contents
#!/usr/bin/env rake begin require 'bundler/setup' rescue LoadError puts 'You must `gem install bundler` and `bundle install` to run rake tasks' end APP_RAKEFILE = File.expand_path('../spec/dummy/Rakefile', __FILE__) load 'rails/tasks/engine.rake' Bundler::GemHelper.install_tasks begin require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(spec: 'app:db:test:prepare') task default: :spec rescue LoadError # no rspec available end
Version data entries
6 entries across 6 versions & 1 rubygems