Sha256: 66becb05a4dc8074651d34cd9f29709994d47970cfaf89e798f3f7b73f0bb928

Contents?: true

Size: 490 Bytes

Versions: 8

Compression:

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

8 entries across 8 versions & 5 rubygems

Version Path
method_draw-0.0.1 Rakefile
sketchily-4.0.1 Rakefile
sketchily-4.0.0 Rakefile
commontator-1.1.2 Rakefile
linkifier-0.0.0 Rakefile
fine_print-0.1.1 Rakefile
fine_print-0.1.0 Rakefile
fine_print-0.0.1 Rakefile