cornucopia 0.1.14 → 0.1.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -13
- data/lib/cornucopia/cucumber_hooks.rb +3 -1
- data/lib/cornucopia/rspec_hooks.rb +12 -9
- data/lib/cornucopia/source_files/cornucopia.css +73 -2
- data/lib/cornucopia/source_files/report.js +17 -0
- data/lib/cornucopia/source_files/report_holder.html +22 -0
- data/lib/cornucopia/spinach_hooks.rb +6 -0
- data/lib/cornucopia/util/configured_report.rb +9 -23
- data/lib/cornucopia/util/file_asset.rb +8 -0
- data/lib/cornucopia/util/report_builder.rb +155 -10
- data/lib/cornucopia/version.rb +1 -1
- data/spec/lib/capybara/finder_diagnostics_spec.rb +288 -233
- data/spec/lib/capybara/page_diagnostics_spec.rb +7 -7
- data/spec/lib/util/configured_report_spec.rb +3 -3
- data/spec/lib/util/log_capture_spec.rb +3 -3
- data/spec/lib/util/report_builder_spec.rb +398 -50
- metadata +4 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cornucopia
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- RealNobody
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-03-
|
11
|
+
date: 2015-03-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -240,8 +240,10 @@ files:
|
|
240
240
|
- lib/cornucopia/source_files/index_base.html
|
241
241
|
- lib/cornucopia/source_files/index_contents.html
|
242
242
|
- lib/cornucopia/source_files/more_info.js
|
243
|
+
- lib/cornucopia/source_files/report.js
|
243
244
|
- lib/cornucopia/source_files/report_base.html
|
244
245
|
- lib/cornucopia/source_files/report_contents.html
|
246
|
+
- lib/cornucopia/source_files/report_holder.html
|
245
247
|
- lib/cornucopia/spinach_hooks.rb
|
246
248
|
- lib/cornucopia/util/configuration.rb
|
247
249
|
- lib/cornucopia/util/configured_report.rb
|