Sha256: 65d14a7ac38d8ed04376a99e4f70e8fe5b37649b9e44215b64799e0d0fac3f23

Contents?: true

Size: 451 Bytes

Versions: 2

Compression:

Stored size: 451 Bytes

Contents

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"

require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)

task default: :spec

task :test do
  puts `RAILS_ENV=test rake app:db:drop app:db:create app:db:migrate; rspec`
end

Bundler::GemHelper.install_tasks

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bit_player-0.2.5 Rakefile
bit_player-0.2.3 Rakefile