summaryrefslogtreecommitdiff
path: root/tasks/common.rake
blob: 0aed2f51d968eecfd404452db36ecc636c321cc3 (plain)
1
2
3
4
5
6
7
8
9
10
require 'rake/clean'

# common pattern cleanup
CLOBBER.include('tmp')

# set default task
task :default => [:spec, :features]

# make packing depend on success of running specs and features
task :package => [:spec, :features]