cucumber 0.8.2 → 0.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +7 -0
- data/VERSION.yml +1 -1
- data/cucumber.gemspec +2 -2
- data/lib/cucumber/ast/scenario_outline.rb +5 -0
- metadata +4 -4
data/History.txt
CHANGED
data/VERSION.yml
CHANGED
data/cucumber.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{cucumber}
|
|
8
|
-
s.version = "0.8.
|
|
8
|
+
s.version = "0.8.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Aslak Helles\303\270y"]
|
|
@@ -555,7 +555,7 @@ Gem::Specification.new do |s|
|
|
|
555
555
|
|
|
556
556
|
(::) U P G R A D I N G (::)
|
|
557
557
|
|
|
558
|
-
Thank you for installing cucumber-0.8.
|
|
558
|
+
Thank you for installing cucumber-0.8.3.
|
|
559
559
|
Please be sure to read http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
|
560
560
|
for important information about this release. Happy cuking!
|
|
561
561
|
|
|
@@ -60,6 +60,11 @@ module Cucumber
|
|
|
60
60
|
visitor.visit_examples_array(@examples_array) unless @examples_array.empty?
|
|
61
61
|
end
|
|
62
62
|
|
|
63
|
+
def fail!(exception)
|
|
64
|
+
# Just a hack for https://rspec.lighthouseapp.com/projects/16211/tickets/413-scenario-outlines-that-fail-with-exception-exit-process
|
|
65
|
+
# Also see http://groups.google.com/group/cukes/browse_thread/thread/41cd567cb9df4bc3
|
|
66
|
+
end
|
|
67
|
+
|
|
63
68
|
def skip_invoke!
|
|
64
69
|
@examples_array.each{|examples| examples.skip_invoke!}
|
|
65
70
|
@feature.next_feature_element(self) do |next_one|
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cucumber
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 57
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 8
|
|
9
|
-
-
|
|
10
|
-
version: 0.8.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.8.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- "Aslak Helles\xC3\xB8y"
|
|
@@ -745,7 +745,7 @@ post_install_message: |+
|
|
|
745
745
|
|
|
746
746
|
(::) U P G R A D I N G (::)
|
|
747
747
|
|
|
748
|
-
Thank you for installing cucumber-0.8.
|
|
748
|
+
Thank you for installing cucumber-0.8.3.
|
|
749
749
|
Please be sure to read http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
|
750
750
|
for important information about this release. Happy cuking!
|
|
751
751
|
|