yard-cucumber 2.1.4 → 2.1.5
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/.gitignore
ADDED
data/History.txt
CHANGED
@@ -1,11 +1,17 @@
|
|
1
|
-
<%
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
1
|
+
<% sc = 0 %>
|
2
|
+
<% @scenario.examples.each_with_index do |example, example_index| %>
|
3
|
+
<% example.data.each_with_index do |row, row_index| %>
|
4
|
+
<div style="display: none;" class="steps <%= "example#{example_index + 1}-#{row_index +1}" %>">
|
5
|
+
<% scenario = @scenario.scenarios[sc] %>
|
6
|
+
<% @scenario_outline = @scenario ; @scenario = scenario ; @steps = scenario.steps %>
|
7
|
+
<%= erb(:steps) %>
|
8
|
+
<% @scenario = @scenario_outline %>
|
9
|
+
<% sc += 1 %>
|
10
|
+
</div>
|
11
|
+
<% end %>
|
7
12
|
<% end %>
|
8
13
|
|
14
|
+
|
9
15
|
<div class="outline">
|
10
16
|
|
11
17
|
<% if @scenario.examples? %>
|
@@ -116,11 +116,11 @@ $(function() {
|
|
116
116
|
if (typeof eventObject.currentTarget !== "undefined") {
|
117
117
|
var exampleRow = $(eventObject.currentTarget);
|
118
118
|
|
119
|
-
if (eventObject.currentTarget.className.match(/example\d+/) == null) {
|
119
|
+
if (eventObject.currentTarget.className.match(/example\d+-\d+/) == null) {
|
120
120
|
return false;
|
121
121
|
}
|
122
122
|
|
123
|
-
var exampleClass = eventObject.currentTarget.className.match(/example\d+/)[0];
|
123
|
+
var exampleClass = eventObject.currentTarget.className.match(/example\d+-\d+/)[0];
|
124
124
|
var example = exampleRow.closest('div.details').find('.' + exampleClass);
|
125
125
|
|
126
126
|
var currentExample = null;
|
data/lib/yard-cucumber.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: yard-cucumber
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 2.1.
|
5
|
+
version: 2.1.5
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Franklin Webber
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-10-
|
13
|
+
date: 2011-10-19 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: gherkin
|
@@ -55,6 +55,7 @@ extra_rdoc_files:
|
|
55
55
|
- README.md
|
56
56
|
- History.txt
|
57
57
|
files:
|
58
|
+
- .gitignore
|
58
59
|
- .rspec
|
59
60
|
- History.txt
|
60
61
|
- README.md
|
@@ -141,7 +142,7 @@ homepage: http://github.com/burtlo/yard-cucumber
|
|
141
142
|
licenses: []
|
142
143
|
|
143
144
|
post_install_message: "\n\
|
144
|
-
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)\n\n Thank you for installing yard-cucumber 2.1.
|
145
|
+
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)\n\n Thank you for installing yard-cucumber 2.1.5 / 2011-10-19.\n \n Changes:\n \n * FIX for multiple scenario outlines (Thanks @ardavis)\n \n\n\
|
145
146
|
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)\n\n"
|
146
147
|
rdoc_options:
|
147
148
|
- --charset=UTF-8
|