cucumber-in-the-yard 1.6.0 → 1.6.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +6 -2
- data/README.md +15 -0
- data/city.gemspec +1 -1
- data/lib/city.rb +1 -1
- data/lib/templates/default/featuredirectory/html/setup.rb +1 -1
- metadata +5 -7
data/History.txt
CHANGED
@@ -1,8 +1,12 @@
|
|
1
|
+
=== 1.6.1 / 2010-11-04
|
2
|
+
|
3
|
+
* FIX - Feature Directries with sub-directories aborted serialization
|
4
|
+
|
1
5
|
=== 1.6.0 / 2010-11-02
|
2
6
|
|
3
7
|
* Feature directories, subdirectories, and Tags breadcrumb pages are present
|
4
|
-
* Scenario Outlines now display each example inline when the example is
|
5
|
-
* 'All Features' and 'All Tags'
|
8
|
+
* Scenario Outlines now display each example inline when the example is clicked
|
9
|
+
* 'All Features' and 'All Tags' links in the search fields
|
6
10
|
|
7
11
|
=== 1.5.4 / 2010-10-28
|
8
12
|
|
data/README.md
CHANGED
@@ -151,6 +151,21 @@ always be performed to produce the documentation faster.
|
|
151
151
|
may be useful. Essentially the first draft would be the current documentation minus the class and method
|
152
152
|
links/searches and replacing the index.html.
|
153
153
|
|
154
|
+
**4. Before, After, and Around Hooks**
|
155
|
+
|
156
|
+
Document the additional before, after, and around hooks that Cucumber uses. Specifically display the before, after, and around
|
157
|
+
hooks that are tied to tags (unions and intersections) on the tag pages.
|
158
|
+
|
159
|
+
**5. Layout refinements of the step definition / step tranform page**
|
160
|
+
|
161
|
+
More work could be done to make this page more searchable, sortable, and usable.
|
162
|
+
|
163
|
+
|
164
|
+
**6. Table Step Transforms**
|
165
|
+
|
166
|
+
The table step transform matching would be nice to show which tables are affected by table transforms
|
167
|
+
|
168
|
+
|
154
169
|
|
155
170
|
LICENSE
|
156
171
|
-------
|
data/city.gemspec
CHANGED
@@ -7,7 +7,7 @@ def self.show_version_changes(version)
|
|
7
7
|
changes = []
|
8
8
|
grab_changes = false
|
9
9
|
|
10
|
-
File.open(
|
10
|
+
File.open("#{File.dirname(__FILE__)}/History.txt",'r') do |file|
|
11
11
|
while (line = file.gets) do
|
12
12
|
|
13
13
|
if line =~ /^===\s*#{version.gsub('.','\.')}\s*\/\s*(.+)\s*$/
|
data/lib/city.rb
CHANGED
@@ -6,7 +6,7 @@ end
|
|
6
6
|
|
7
7
|
def directory
|
8
8
|
@objects_by_letter = all_types_by_letter(YARD::CodeObjects::Cucumber::Feature)
|
9
|
-
@directories_by_letter = @directory.children.find_all {|child| child.is_a?(YARD::CodeObjects::Cucumber::FeatureDirectory) }.sort_by {|dir| dir.name }
|
9
|
+
@directories_by_letter = @directory.children.find_all {|child| child.is_a?(YARD::CodeObjects::Cucumber::FeatureDirectory) }.sort_by {|dir| dir.name.to_s }
|
10
10
|
erb(:directory)
|
11
11
|
end
|
12
12
|
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 6
|
8
|
-
-
|
9
|
-
version: 1.6.
|
8
|
+
- 1
|
9
|
+
version: 1.6.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Franklin Webber
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-11-
|
17
|
+
date: 2010-11-04 00:00:00 -07:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -156,13 +156,11 @@ post_install_message: |+
|
|
156
156
|
|
157
157
|
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
158
158
|
|
159
|
-
Thank you for installing Cucumber-In-The-YARD 1.6.
|
159
|
+
Thank you for installing Cucumber-In-The-YARD 1.6.1 / 2010-11-04.
|
160
160
|
|
161
161
|
Changes:
|
162
162
|
|
163
|
-
*
|
164
|
-
* Scenario Outlines now display each example inline when the example is pressed
|
165
|
-
* 'All Features' and 'All Tags' link in the search fields
|
163
|
+
* FIX - Feature Directries with sub-directories aborted serialization
|
166
164
|
|
167
165
|
|
168
166
|
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|