pretty_face 0.9.1 → 0.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/ChangeLog +3 -0
- data/README.md +4 -1
- data/lib/pretty_face/formatter/html.rb +3 -0
- data/lib/pretty_face/templates/feature.erb +1 -1
- data/lib/pretty_face/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f241d48c633ac355c619504fcb3939ab2613739
|
4
|
+
data.tar.gz: f766731b14cacaa37cb5fa11541d9198aedd9cbd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4ab04f7e4e7c2c1d5c2e23f3a0fa3f4e788624df0b07c66afa3b006bb4d194289e4b0480ea83d67c75f99fd02e0728b995acd60db738ef6dd76df9e146f00de
|
7
|
+
data.tar.gz: d10a6748cc1c58d6cefb77d9ad4fb9cb94f8d5b25a6f1c30736017bf54f52f55b9811829d71920cd5a32fd18fe79b1fc49649bc59815400cabb7b1e7a0b8cb80
|
data/.gitignore
CHANGED
data/ChangeLog
CHANGED
data/README.md
CHANGED
@@ -38,7 +38,10 @@ To replace the header that appears on all of the pages with details about featur
|
|
38
38
|
|
39
39
|
## Known Issues
|
40
40
|
|
41
|
-
|
41
|
+
Using this gem's formatter from within RubyMine causes the result tree not to expand Scenario Outlines when running in RubyMine.
|
42
|
+
|
43
|
+
For additional issues see:
|
44
|
+
[http://github.com/cheezy/pretty_face/issues](http://github.com/cheezy/pretty_face/issues)
|
42
45
|
|
43
46
|
## Contribute
|
44
47
|
|
@@ -24,6 +24,9 @@ module PrettyFace
|
|
24
24
|
@path_to_erb = File.join(File.dirname(__FILE__), '..', 'templates')
|
25
25
|
@step_mother = step_mother
|
26
26
|
@options = options
|
27
|
+
# The expand option is set to true by RubyMine and cannot be turned off using the IDE. This option causes
|
28
|
+
# a test run while using this gem to terminate.
|
29
|
+
@options[:expand] = false
|
27
30
|
@report = Report.new
|
28
31
|
@img_id = 0
|
29
32
|
@logo = 'face.png'
|
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
<body>
|
10
10
|
|
11
|
-
<div style="clear: both; width
|
11
|
+
<div style="clear: both; width: 100%; background-color: #F6F6F6;">
|
12
12
|
<a href="<%= feature.directory_prefix_for(feature.file) + feature.parent_filename %>" style="color=#0071BC;">< Back</a>
|
13
13
|
</div>
|
14
14
|
|
data/lib/pretty_face/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pretty_face
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: '0.10'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeffrey S. Morgan
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date:
|
15
|
+
date: 2014-02-05 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: actionpack
|