Sha256: 4bb5abe1c8484625bf4df838d5830e4c12c44eae04e25de717a444a01cb406e9

Contents?: true

Size: 472 Bytes

Versions: 38

Compression:

Stored size: 472 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

require 'rake/testtask'

Rake::TestTask.new(:spec => 'app:db:test:prepare') do |t|
  t.libs << 'spec'
  t.pattern = 'spec/**/*_spec.rb'
  t.verbose = false
end

task :default => :spec

Version data entries

38 entries across 38 versions & 2 rubygems

Version Path
openstax_accounts-7.2.0 Rakefile
openstax_accounts-7.1.0 Rakefile
openstax_accounts-7.0.1 Rakefile
openstax_accounts-7.0.0 Rakefile
openstax_accounts-6.4.2 Rakefile
openstax_accounts-6.4.1 Rakefile
openstax_accounts-6.4.0 Rakefile
openstax_accounts-6.3.2 Rakefile
openstax_accounts-6.3.1 Rakefile
openstax_accounts-6.3.0 Rakefile
openstax_accounts-6.2.0 Rakefile
openstax_accounts-6.1.7 Rakefile
openstax_accounts-6.1.6 Rakefile
openstax_accounts-6.1.5 Rakefile
openstax_accounts-6.1.4 Rakefile
openstax_accounts-6.1.3 Rakefile
openstax_accounts-6.1.2 Rakefile
openstax_accounts-6.1.1 Rakefile
openstax_accounts-6.1.0 Rakefile
openstax_accounts-6.0.0 Rakefile