Sha256: b9b82f5bc4e6642feede45500e2a44c99492dd843c637fe219bcb37f6b118399

Contents?: true

Size: 472 Bytes

Versions: 8

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

8 entries across 8 versions & 1 rubygems

Version Path
commontator-4.10.3 Rakefile
commontator-4.10.2 Rakefile
commontator-4.10.1 Rakefile
commontator-4.10.0 Rakefile
commontator-4.9.0 Rakefile
commontator-4.8.0 Rakefile
commontator-4.7.2 Rakefile
commontator-4.7.1 Rakefile