cucumber 0.8.1 → 0.8.2
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 +14 -1
- data/Rakefile +1 -1
- data/VERSION.yml +1 -1
- data/cucumber.gemspec +7 -7
- data/features/around_hooks.feature +44 -0
- data/features/cucumber_cli.feature +1 -0
- data/features/html_formatter/a.html +215 -37
- data/features/support/env.rb +1 -0
- data/gem_tasks/features.rake +0 -4
- data/lib/cucumber/ast/feature_element.rb +1 -1
- data/lib/cucumber/ast/outline_table.rb +2 -2
- data/lib/cucumber/ast/scenario.rb +3 -5
- data/lib/cucumber/formatter/cucumber.css +6 -2
- data/lib/cucumber/formatter/cucumber.sass +7 -2
- data/lib/cucumber/formatter/html.rb +43 -14
- data/lib/cucumber/formatter/jquery-min.js +154 -0
- data/lib/cucumber/formatter/json.rb +1 -1
- data/lib/cucumber/js_support/js_dsl.js +10 -10
- data/lib/cucumber/js_support/js_language.rb +8 -4
- data/lib/cucumber/step_mother.rb +9 -1
- metadata +9 -10
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: 59
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 8
|
9
|
-
-
|
10
|
-
version: 0.8.
|
9
|
+
- 2
|
10
|
+
version: 0.8.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- "Aslak Helles\xC3\xB8y"
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-06-
|
18
|
+
date: 2010-06-16 00:00:00 +02:00
|
19
19
|
default_executable: cucumber
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -26,12 +26,12 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ~>
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
hash:
|
29
|
+
hash: 11
|
30
30
|
segments:
|
31
31
|
- 2
|
32
32
|
- 0
|
33
|
-
-
|
34
|
-
version: 2.0.
|
33
|
+
- 2
|
34
|
+
version: 2.0.2
|
35
35
|
type: :runtime
|
36
36
|
version_requirements: *id001
|
37
37
|
- !ruby/object:Gem::Dependency
|
@@ -649,6 +649,7 @@ files:
|
|
649
649
|
- lib/cucumber/formatter/duration.rb
|
650
650
|
- lib/cucumber/formatter/html.rb
|
651
651
|
- lib/cucumber/formatter/io.rb
|
652
|
+
- lib/cucumber/formatter/jquery-min.js
|
652
653
|
- lib/cucumber/formatter/json.rb
|
653
654
|
- lib/cucumber/formatter/json_pretty.rb
|
654
655
|
- lib/cucumber/formatter/junit.rb
|
@@ -734,7 +735,6 @@ files:
|
|
734
735
|
- spec/cucumber/wire_support/wire_step_definition_spec.rb
|
735
736
|
- spec/cucumber/world/pending_spec.rb
|
736
737
|
- spec/spec_helper.rb
|
737
|
-
- examples/self_test/tmp/features/step_definitions/steps.rb
|
738
738
|
has_rdoc: true
|
739
739
|
homepage: http://cukes.info
|
740
740
|
licenses: []
|
@@ -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.2.
|
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
|
|
@@ -911,7 +911,6 @@ test_files:
|
|
911
911
|
- examples/ruby2python/features/support/env.rb
|
912
912
|
- examples/self_test/features/step_definitions/sample_steps.rb
|
913
913
|
- examples/self_test/features/support/env.rb
|
914
|
-
- examples/self_test/tmp/features/step_definitions/steps.rb
|
915
914
|
- examples/sinatra/app.rb
|
916
915
|
- examples/sinatra/features/step_definitions/add_steps.rb
|
917
916
|
- examples/sinatra/features/support/env.rb
|