1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00
thoughtbot--factory_bot/Rakefile

39 lines
882 B
Text
Raw Normal View History

require 'rubygems'
2011-11-11 10:23:10 -05:00
require 'bundler'
require 'rake'
require 'appraisal'
2011-02-07 17:48:00 -05:00
require 'yard'
2011-11-11 10:23:10 -05:00
require 'rspec/core/rake_task'
require 'cucumber/rake/task'
Bundler::GemHelper.install_tasks
2009-09-15 15:56:54 -04:00
desc 'Default: run the specs and features.'
task :default do
system("bundle exec rake -s appraisal spec:unit spec:acceptance features;")
end
2009-04-11 11:27:23 -04:00
namespace :spec do
desc "Run unit specs"
2010-11-11 16:33:45 -05:00
RSpec::Core::RakeTask.new('unit') do |t|
t.pattern = 'spec/{*_spec.rb,factory_girl/**/*_spec.rb}'
end
desc "Run acceptance specs"
2010-11-11 16:33:45 -05:00
RSpec::Core::RakeTask.new('acceptance') do |t|
t.pattern = 'spec/acceptance/**/*_spec.rb'
end
end
desc "Run the unit and acceptance specs"
task :spec => ['spec:unit', 'spec:acceptance']
2009-09-15 15:56:54 -04:00
Cucumber::Rake::Task.new(:features) do |t|
t.fork = true
t.cucumber_opts = ['--format', (ENV['CUCUMBER_FORMAT'] || 'progress')]
end
2010-06-23 10:59:11 -04:00
2011-02-07 17:48:00 -05:00
YARD::Rake::YardocTask.new do |t|
end