Skip to content

Commit

Permalink
Release 0.1.99.20 - Fixes cucumber#190 and cucumber#174.
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakhellesoy committed Feb 3, 2009
1 parent 70f2b14 commit 09b2b61
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
1 change: 1 addition & 0 deletions History.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ pure Ruby users have been enjoying for a while.
** Full jar and simple jar

== Bugfixes
* Depend on polyglot version (0.2.4) to avoid masking require errors. (Aslak Hellesøy).
* -n option does not suppress the line info for a Scenario Outline (#175 Aslak Hellesøy)
* Errors with rspec-rails matchers in cucumber 0.1.99 (#173 David Chelimsky)
* Can't use an empty string as a table value in a scenario outline (#172 Aslak Hellesøy)
Expand Down
7 changes: 6 additions & 1 deletion config/hoe.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,12 @@ def extra_deps
# == Optional
p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
#p.extra_deps = [] # An array of rubygem dependencies [name, version], e.g. [ ['active_support', '>= 1.3.1'] ]
p.extra_deps = [ ['term-ansicolor', '>= 1.0.3'], ['treetop', '>= 1.2.4'], ['diff-lcs', '>= 1.1.2'] ]
p.extra_deps = [
['term-ansicolor', '>= 1.0.3'],
['treetop', '>= 1.2.4'],
['polyglot', '>= 0.2.4'], # Remove this when Treetop no longer loads polyglot by default.
['diff-lcs', '>= 1.1.2']
]

#p.spec_extras = {} # A hash of extra values to set in the gemspec.

Expand Down
Loading

0 comments on commit 09b2b61

Please sign in to comment.