Rakefile in banyan-1.0.1 vs Rakefile in banyan-1.1.1
- old
+ new
@@ -7,6 +7,9 @@
RSpec::Core::RakeTask.new do |t|
t.rspec_opts = ["-c", "-f progress"]
t.pattern = 'spec/**/*_spec.rb'
end
-task :default => :spec
+require 'cucumber/rake/task'
+Cucumber::Rake::Task.new(:features)
+
+task :default => [:spec,:features]