Rakefile in soap-object-0.6.7 vs Rakefile in soap-object-0.6.8
- old
+ new
@@ -9,10 +9,14 @@
spec.pattern = 'spec/**/*_spec.rb'
end
task :spec
Cucumber::Rake::Task.new(:features, "Run all features") do |t|
- t.profile = 'focus'
+ t.profile = 'default'
+end
+
+Cucumber::Rake::Task.new(:wip, "Wip features") do |t|
+ t.profile = 'wip'
end
desc 'Run all specs and features'
task :test => %w[spec features]