Sha256: ef17137c876e6a670a1a976b2c7de6624399cf207325dc48afce25f5dc5a86f2

Contents?: true

Size: 882 Bytes

Versions: 7

Compression:

Stored size: 882 Bytes

Contents

require 'rubygems'
require 'bundler'
require 'rake'
require 'appraisal'
require 'yard'
require 'rspec/core/rake_task'
require 'cucumber/rake/task'

Bundler::GemHelper.install_tasks

desc 'Default: run the specs and features.'
task :default do
  system("bundle exec rake -s appraisal spec:unit spec:acceptance features;")
end

namespace :spec do
  desc "Run unit specs"
  RSpec::Core::RakeTask.new('unit') do |t|
    t.pattern = 'spec/{*_spec.rb,factory_girl/**/*_spec.rb}'
  end

  desc "Run acceptance specs"
  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']

Cucumber::Rake::Task.new(:features) do |t|
  t.fork = true
  t.cucumber_opts = ['--format', (ENV['CUCUMBER_FORMAT'] || 'progress')]
end

YARD::Rake::YardocTask.new do |t|
end

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
sc_core-0.0.7 test/dummy/vendor/bundle/ruby/2.2.0/gems/factory_girl-4.5.0/Rakefile
solidus_backend-1.0.0.pre3 vendor/bundle/gems/factory_girl-4.5.0/Rakefile
solidus_backend-1.0.0.pre2 vendor/bundle/gems/factory_girl-4.5.0/Rakefile
solidus_backend-1.0.0.pre vendor/bundle/gems/factory_girl-4.5.0/Rakefile
factory_girl-4.5.0 Rakefile
factory_girl-4.4.0 Rakefile
factory_girl-4.3.0 Rakefile