Sha256: 15fbd485d9f2733cbd59658fbee9297025ae823e9562aceae55c736e5a0af3b4

Contents?: true

Size: 489 Bytes

Versions: 19

Compression:

Stored size: 489 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(:test => 'app:db:test:prepare') do |t|
  t.libs << 'lib'
  t.libs << 'spec'
  t.pattern = 'spec/**/*_spec.rb'
  t.verbose = false
end

task :default => :test

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
commontator-4.5.4 Rakefile
commontator-4.5.3 Rakefile
commontator-4.5.2 Rakefile
commontator-4.5.1 Rakefile
commontator-4.5.0 Rakefile
commontator-4.4.1 Rakefile
commontator-4.3.0 Rakefile
commontator-4.2.2 Rakefile
commontator-4.2.1 Rakefile
commontator-4.2.0 Rakefile
commontator-4.1.2 Rakefile
commontator-4.1.1 Rakefile
commontator-4.0.2 Rakefile
commontator-2.0.2 Rakefile
commontator-4.0.1 Rakefile
commontator-4.0.0 Rakefile
commontator-2.0.1 Rakefile
commontator-2.0.0 Rakefile
commontator-1.1.3 Rakefile