Skip to content

Commit

Permalink
Upgrading to cucumber 0.4.2, and noting dev dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
spicycode committed Oct 16, 2009
1 parent 5f10b64 commit 6ee77bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ begin
gem.authors = ["David Chelimsky", "Chad Humphries"]
gem.add_development_dependency('rspec-expectations', '>= 2.0.0.a1')
gem.add_development_dependency('rspec-mocks', '>= 2.0.0.a1')
gem.add_development_dependency('cucumber', '>= 0.4.2')
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Jeweler::GemcutterTasks.new
Expand Down Expand Up @@ -53,7 +54,7 @@ if RUBY_VERSION == '1.9.1'
t.cucumber_opts = %w{--format progress}
end

task :default => [:spec, :features]
task :default => [:check_dependencies, :spec, :features]
else
Cucumber::Rake::Task.new :features do |t|
t.rcov = true
Expand All @@ -62,7 +63,7 @@ else
t.cucumber_opts = %w{--format progress}
end

task :default => [:rcov, :features]
task :default => [:check_dependencies, :rcov, :features]
end


Expand Down
6 changes: 3 additions & 3 deletions cucumber.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
default: features -r features -t ~wip
wip: features -r features -t wip
all: features -r features
default: features -r features -t ~@wip
wip: features -r features -t @wip
all: features -r features

0 comments on commit 6ee77bf

Please sign in to comment.