nxgreport 0.6.0 → 0.11.0
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.
- checksums.yaml +4 -4
- data/lib/nxgcore.rb +217 -0
- data/lib/nxgcss.rb +323 -0
- data/lib/nxghtml.rb +196 -0
- data/lib/nxgjs.rb +233 -0
- data/lib/nxgreport.rb +3 -363
- metadata +9 -8
metadata
CHANGED
@@ -1,24 +1,25 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nxgreport
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Balabharathi Jayaraman
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-10-01 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description:
|
14
|
-
It displays a single view where tests (total, pass, fail) are grouped by functionality.
|
15
|
-
The result is a single static HTML file with an option to switch between dark &
|
16
|
-
light modes.
|
13
|
+
description: Generate a beautiful static test report.
|
17
14
|
email: balabharathi.jayaraman@gmail.com
|
18
15
|
executables: []
|
19
16
|
extensions: []
|
20
17
|
extra_rdoc_files: []
|
21
18
|
files:
|
19
|
+
- lib/nxgcore.rb
|
20
|
+
- lib/nxgcss.rb
|
21
|
+
- lib/nxghtml.rb
|
22
|
+
- lib/nxgjs.rb
|
22
23
|
- lib/nxgreport.rb
|
23
24
|
homepage: https://rubygemspec.org/gems/nxgreport
|
24
25
|
licenses:
|
@@ -35,14 +36,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
35
36
|
requirements:
|
36
37
|
- - ">="
|
37
38
|
- !ruby/object:Gem::Version
|
38
|
-
version:
|
39
|
+
version: 2.3.0
|
39
40
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
40
41
|
requirements:
|
41
42
|
- - ">="
|
42
43
|
- !ruby/object:Gem::Version
|
43
44
|
version: '0'
|
44
45
|
requirements: []
|
45
|
-
rubygems_version: 3.
|
46
|
+
rubygems_version: 3.1.4
|
46
47
|
signing_key:
|
47
48
|
specification_version: 4
|
48
49
|
summary: Next Gen Report
|