Sha256: c51fc7858278c5764dbe9af5ba2b0bd3f404f057af02cd5644928afef6a22d64

Contents?: true

Size: 437 Bytes

Versions: 2

Compression:

Stored size: 437 Bytes

Contents

# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.

require File.expand_path('../test_app/config/application', __FILE__)

TestApp::Application.load_tasks
require 'bundler/gem_tasks'

desc 'Rebuild test and run specs'
task :full_test do
  system("rake db:drop db:migrate RAILS_ENV=test && rspec")
end

task :default => 'full_test'

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
post_clerk-0.5 Rakefile
accountant_clerk-0.7 Rakefile