yard-cucumber 2.3.0 → 2.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.txt +6 -0
- data/LICENSE.txt +22 -0
- data/example/step_definitions/first.step.rb +5 -4
- data/lib/yard-cucumber/version.rb +1 -1
- data/{city.gemspec → yard-cucumber.gemspec} +1 -0
- metadata +9 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dadb00b06fe39a5adcb935bbc8b19ae107d57b89
|
4
|
+
data.tar.gz: 9edf0cf45fcf345cb1ddbfb5ae50c2797f32be31
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cde12b1824d7a3e6c482950174e3b7d791e40933a3e1a2d16f4f90e0ebc2b29b454edba2d7c9ade84459001b8306ef180e80485ab1dc443533531daa35543b05
|
7
|
+
data.tar.gz: 7cf3a50d91499464784ce6fd2bf5eeb4046697293778499886f604e2a93570efde5a9aab7bb747c544caa9a644c2c151f3dd57aa4d5e11e70912f51ae8f324b8
|
data/History.txt
CHANGED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2013 Franklin Webber
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
22
|
+
|
@@ -8,14 +8,15 @@ end
|
|
8
8
|
|
9
9
|
#
|
10
10
|
# This step transform converts "scenario" to "scenario"
|
11
|
-
#
|
11
|
+
#
|
12
12
|
Transform /^scenario$/ do |scenario|
|
13
13
|
"scenario"
|
14
14
|
end
|
15
15
|
|
16
16
|
#
|
17
17
|
# This step definition is all about steps
|
18
|
-
#
|
19
|
-
Given
|
18
|
+
#
|
19
|
+
Given(/^this (scenario|background|#{ORDER}) step$/) do |step|
|
20
20
|
puts "step #{order}"
|
21
|
-
end
|
21
|
+
end
|
22
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yard-cucumber
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Franklin Webber
|
@@ -71,9 +71,9 @@ files:
|
|
71
71
|
- Gemfile
|
72
72
|
- Gemfile.lock
|
73
73
|
- History.txt
|
74
|
+
- LICENSE.txt
|
74
75
|
- README.md
|
75
76
|
- Rakefile
|
76
|
-
- city.gemspec
|
77
77
|
- example/README.md
|
78
78
|
- example/child_feature/README.md
|
79
79
|
- example/child_feature/child.feature
|
@@ -154,14 +154,16 @@ files:
|
|
154
154
|
- lib/yard/server/commands/list_command.rb
|
155
155
|
- lib/yard/server/router.rb
|
156
156
|
- lib/yard/templates/helpers/base_helper.rb
|
157
|
+
- yard-cucumber.gemspec
|
157
158
|
homepage: http://github.com/burtlo/yard-cucumber
|
158
|
-
licenses:
|
159
|
+
licenses:
|
160
|
+
- MIT
|
159
161
|
metadata: {}
|
160
162
|
post_install_message: "\n(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
161
|
-
(::) (::) (::)\n\n Thank you for installing yard-cucumber 2.3.
|
163
|
+
(::) (::) (::)\n\n Thank you for installing yard-cucumber 2.3.1 / 2013-07-12.\n\n
|
162
164
|
\ Changes:\n \n * Fixes for Cucumber ~> 1.3 and gherkin ~> 2.12 by loading\n
|
163
|
-
\ a required platform file.\n \n\n(::) (::)
|
164
|
-
(::) (::) (::) (::) (::) (::)\n\n"
|
165
|
+
\ a required platform file.\n * Added appropriate MIT license\n \n\n(::) (::)
|
166
|
+
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)\n\n"
|
165
167
|
rdoc_options:
|
166
168
|
- --charset=UTF-8
|
167
169
|
require_paths:
|
@@ -183,3 +185,4 @@ signing_key:
|
|
183
185
|
specification_version: 4
|
184
186
|
summary: Cucumber Features in YARD
|
185
187
|
test_files: []
|
188
|
+
has_rdoc:
|