forked from cucumber-attic/gherkin2
-
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.
- Loading branch information
1 parent
5862885
commit a30335f
Showing
4 changed files
with
7 additions
and
7 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 |
---|---|---|
|
@@ -243,6 +243,9 @@ Run tests once with GHERKIN_JS_NATIVE=true: | |
|
||
Now we can release: | ||
|
||
* Make sure you have rbenv installed | ||
* And that you have merged this patch: https://github.com/sstephenson/rbenv/issues/121 | ||
* `cd ~/.rbenv && git pull [email protected]:sstephenson/rbenv.git exec-next` | ||
* Make sure GHERKIN_JS is defined (see JavaScript section above) | ||
* Bump version in: | ||
* This file (Installation/Java section) | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
require 'rspec/core/rake_task' | ||
|
||
desc "Run RSpec" | ||
RSpec::Core::RakeTask.new(:spec) | ||
|
||
desc "Run RSpec with RCov" | ||
RSpec::Core::RakeTask.new(:rcov) do |t| | ||
t.rcov = true | ||
t.rcov_opts = %w{--exclude osx\/objc,gems\/,spec\/} | ||
task :spec do | ||
sh "rspec spec" | ||
end |