forked from cucumber/cucumber-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactored GherkinBuilder to use new Gherkin Formatter API.
- Loading branch information
1 parent
04c9ab6
commit 1754176
Showing
7 changed files
with
52 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
--color |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,8 @@ | ||
begin | ||
require 'rspec/core/rake_task' | ||
require 'rspec/core/rake_task' | ||
|
||
desc "Run RSpec" | ||
RSpec::Core::RakeTask.new do |t| | ||
t.rcov = ENV['RCOV'] | ||
t.rcov_opts = %w{--exclude osx\/objc,gems\/,spec\/} | ||
t.verbose = true | ||
end | ||
rescue LoadError => e | ||
require 'spec/rake/spectask' | ||
|
||
desc "Run RSpec" | ||
Spec::Rake::SpecTask.new do |t| | ||
t.spec_opts = %w{--color --diff} | ||
t.rcov = ENV['RCOV'] | ||
t.rcov_opts = %w{--exclude osx\/objc,gems\/,spec\/} | ||
t.verbose = true | ||
end | ||
desc "Run RSpec" | ||
RSpec::Core::RakeTask.new do |t| | ||
t.rcov = ENV['RCOV'] | ||
t.rcov_opts = %w{--exclude osx\/objc,gems\/,spec\/} | ||
t.verbose = true | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters