public
Description: A Rails project template, intended to keep app baselines up to date. Includes shoulda, mocha, factory_girl, Hoptoad, git rake tasks, cap recipes, etc.
Homepage: http://thoughtbot.com
Clone URL: git://github.com/thoughtbot/suspenders.git
suspenders / Rakefile
100644 14 lines (9 sloc) 0.378 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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.join(File.dirname(__FILE__), 'config', 'boot'))
 
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
require 'tasks/rails'
 
desc "Run all tests and features"
task :default => [:test, :features]