Rakefile in taketo-0.0.5 vs Rakefile in taketo-0.0.6
- old
+ new
@@ -13,10 +13,17 @@
require 'rake'
require 'rspec/core/rake_task'
require 'cucumber'
require 'cucumber/rake/task'
-RSpec::Core::RakeTask.new
+RSpec::Core::RakeTask.new do |t|
+ t.pattern = 'spec/lib/**/*_spec.rb'
+end
+
+RSpec::Core::RakeTask.new do |t|
+ t.pattern = 'spec/integration/**/*_spec.rb'
+ t.name = :integration_spec
+end
Cucumber::Rake::Task.new(:features) do |t|
t.cucumber_opts = "features --tags ~@wip --format pretty -x"
t.fork = false
end