simplecov-material 0.5.0 → 1.0.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/.github/workflows/builds.yml +1 -1
- data/.github/workflows/lints.yml +2 -2
- data/.github/workflows/tests.yml +1 -1
- data/.markdownlint.yml +21 -0
- data/.rubocop.yml +3 -11
- data/.ruby-version +1 -0
- data/CHANGELOG.md +2 -0
- data/CONTRIBUTING.md +3 -3
- data/README.md +3 -3
- data/bin/publish +4 -4
- data/dist/scripts/dialog.js +1 -1
- data/dist/styles/table.scss +28 -6
- data/lib/simplecov-material.rb +31 -4
- data/lib/simplecov-material/version.rb +1 -1
- data/package.json +7 -5
- data/public/application.css +564 -1307
- data/public/application.js +11 -11
- data/test/test_helper.rb +1 -0
- data/views/dialog.erb +29 -2
- data/views/group_page.erb +105 -33
- data/views/main.erb +3 -3
- data/yarn.lock +2468 -1738
- metadata +8 -6
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simplecov-material
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christopher Pezza
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-10-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: simplecov
|
@@ -45,7 +45,9 @@ files:
|
|
45
45
|
- ".github/workflows/lints.yml"
|
46
46
|
- ".github/workflows/tests.yml"
|
47
47
|
- ".gitignore"
|
48
|
+
- ".markdownlint.yml"
|
48
49
|
- ".rubocop.yml"
|
50
|
+
- ".ruby-version"
|
49
51
|
- ".stylelintignore"
|
50
52
|
- ".stylelintrc"
|
51
53
|
- CHANGELOG.md
|
@@ -99,7 +101,7 @@ metadata:
|
|
99
101
|
source_code_uri: https://github.com/chiefpansancolt/simplecov-material
|
100
102
|
changelog_uri: https://github.com/chiefpansancolt/simplecov-material/blob/master/CHANGELOG.md
|
101
103
|
bug_tracker_uri: https://github.com/chiefpansancolt/simplecov-material/issues
|
102
|
-
post_install_message:
|
104
|
+
post_install_message:
|
103
105
|
rdoc_options: []
|
104
106
|
require_paths:
|
105
107
|
- lib
|
@@ -114,8 +116,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
114
116
|
- !ruby/object:Gem::Version
|
115
117
|
version: '0'
|
116
118
|
requirements: []
|
117
|
-
rubygems_version: 3.
|
118
|
-
signing_key:
|
119
|
+
rubygems_version: 3.1.4
|
120
|
+
signing_key:
|
119
121
|
specification_version: 4
|
120
122
|
summary: HTML Material Design View for Simplecov formatter
|
121
123
|
test_files:
|