simplecov-tailwindcss 0.1.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 +7 -0
- data/.eslintignore +1 -0
- data/.eslintrc.yml +25 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
- data/.github/ISSUE_TEMPLATE/feature-request.md +20 -0
- data/.github/ISSUE_TEMPLATE/question.md +10 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +32 -0
- data/.github/workflows/builds.yml +37 -0
- data/.github/workflows/lints.yml +38 -0
- data/.github/workflows/tests.yml +26 -0
- data/.gitignore +12 -0
- data/.markdownlint.yml +21 -0
- data/.rubocop.yml +876 -0
- data/.ruby-version +1 -0
- data/.stylelintignore +1 -0
- data/.stylelintrc +48 -0
- data/CHANGELOG.md +14 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/CONTRIBUTING.md +132 -0
- data/Gemfile +18 -0
- data/LICENSE +21 -0
- data/README.md +111 -0
- data/Rakefile +12 -0
- data/bin/console +12 -0
- data/bin/publish +82 -0
- data/bin/setup +7 -0
- data/dist/app.js +9 -0
- data/dist/app.scss +6 -0
- data/dist/scripts/controllers/toggle_controller.js +14 -0
- data/dist/scripts/navigation.js +44 -0
- data/dist/scripts/table.js +103 -0
- data/dist/scripts/timeago.js +3 -0
- data/dist/styles/dialog.scss +50 -0
- data/dist/styles/main.scss +3 -0
- data/lib/simplecov-tailwindcss.rb +156 -0
- data/lib/simplecov-tailwindcss/version.rb +9 -0
- data/package.json +69 -0
- data/public/application.css +201867 -0
- data/public/application.js +662 -0
- data/simplecov-tailwindcss.gemspec +32 -0
- data/tailwind.config.js +17 -0
- data/test/fixtures/app/controllers/sample_controller.rb +12 -0
- data/test/fixtures/app/models/user.rb +12 -0
- data/test/fixtures/sample.rb +12 -0
- data/test/simplecov-tailwindcss/simplecov_tailwindcss_test.rb +40 -0
- data/test/test_helper.rb +18 -0
- data/views/dialog.erb +88 -0
- data/views/group_page.erb +133 -0
- data/views/main.erb +187 -0
- data/views/stat_card.erb +12 -0
- data/views/table_column_head.erb +13 -0
- data/webpack.config.js +82 -0
- data/yarn.lock +7537 -0
- metadata +122 -0
metadata
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: simplecov-tailwindcss
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Christopher Pezza
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2020-10-10 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: simplecov
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 0.16.0
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 0.16.0
|
|
27
|
+
description: HTML Tailwind Design View of Simplecov as a formatterthat is clean, easy
|
|
28
|
+
to read.
|
|
29
|
+
email:
|
|
30
|
+
- chiefpansancolt@gmail.com
|
|
31
|
+
executables:
|
|
32
|
+
- console
|
|
33
|
+
- publish
|
|
34
|
+
- setup
|
|
35
|
+
extensions: []
|
|
36
|
+
extra_rdoc_files: []
|
|
37
|
+
files:
|
|
38
|
+
- ".eslintignore"
|
|
39
|
+
- ".eslintrc.yml"
|
|
40
|
+
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
|
41
|
+
- ".github/ISSUE_TEMPLATE/feature-request.md"
|
|
42
|
+
- ".github/ISSUE_TEMPLATE/question.md"
|
|
43
|
+
- ".github/PULL_REQUEST_TEMPLATE.md"
|
|
44
|
+
- ".github/workflows/builds.yml"
|
|
45
|
+
- ".github/workflows/lints.yml"
|
|
46
|
+
- ".github/workflows/tests.yml"
|
|
47
|
+
- ".gitignore"
|
|
48
|
+
- ".markdownlint.yml"
|
|
49
|
+
- ".rubocop.yml"
|
|
50
|
+
- ".ruby-version"
|
|
51
|
+
- ".stylelintignore"
|
|
52
|
+
- ".stylelintrc"
|
|
53
|
+
- CHANGELOG.md
|
|
54
|
+
- CODE_OF_CONDUCT.md
|
|
55
|
+
- CONTRIBUTING.md
|
|
56
|
+
- Gemfile
|
|
57
|
+
- LICENSE
|
|
58
|
+
- README.md
|
|
59
|
+
- Rakefile
|
|
60
|
+
- bin/console
|
|
61
|
+
- bin/publish
|
|
62
|
+
- bin/setup
|
|
63
|
+
- dist/app.js
|
|
64
|
+
- dist/app.scss
|
|
65
|
+
- dist/scripts/controllers/toggle_controller.js
|
|
66
|
+
- dist/scripts/navigation.js
|
|
67
|
+
- dist/scripts/table.js
|
|
68
|
+
- dist/scripts/timeago.js
|
|
69
|
+
- dist/styles/dialog.scss
|
|
70
|
+
- dist/styles/main.scss
|
|
71
|
+
- lib/simplecov-tailwindcss.rb
|
|
72
|
+
- lib/simplecov-tailwindcss/version.rb
|
|
73
|
+
- package.json
|
|
74
|
+
- public/application.css
|
|
75
|
+
- public/application.js
|
|
76
|
+
- simplecov-tailwindcss.gemspec
|
|
77
|
+
- tailwind.config.js
|
|
78
|
+
- test/fixtures/app/controllers/sample_controller.rb
|
|
79
|
+
- test/fixtures/app/models/user.rb
|
|
80
|
+
- test/fixtures/sample.rb
|
|
81
|
+
- test/simplecov-tailwindcss/simplecov_tailwindcss_test.rb
|
|
82
|
+
- test/test_helper.rb
|
|
83
|
+
- views/dialog.erb
|
|
84
|
+
- views/group_page.erb
|
|
85
|
+
- views/main.erb
|
|
86
|
+
- views/stat_card.erb
|
|
87
|
+
- views/table_column_head.erb
|
|
88
|
+
- webpack.config.js
|
|
89
|
+
- yarn.lock
|
|
90
|
+
homepage: https://chiefpansancolt.live/docs/simplecov_tailwind/
|
|
91
|
+
licenses:
|
|
92
|
+
- MIT
|
|
93
|
+
metadata:
|
|
94
|
+
homepage_uri: https://chiefpansancolt.live/docs/simplecov_tailwind/
|
|
95
|
+
source_code_uri: https://github.com/chiefpansancolt/simplecov-tailwindcss
|
|
96
|
+
changelog_uri: https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/master/CHANGELOG.md
|
|
97
|
+
bug_tracker_uri: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues
|
|
98
|
+
post_install_message:
|
|
99
|
+
rdoc_options: []
|
|
100
|
+
require_paths:
|
|
101
|
+
- lib
|
|
102
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
103
|
+
requirements:
|
|
104
|
+
- - ">="
|
|
105
|
+
- !ruby/object:Gem::Version
|
|
106
|
+
version: 2.3.0
|
|
107
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
108
|
+
requirements:
|
|
109
|
+
- - ">="
|
|
110
|
+
- !ruby/object:Gem::Version
|
|
111
|
+
version: '0'
|
|
112
|
+
requirements: []
|
|
113
|
+
rubygems_version: 3.1.4
|
|
114
|
+
signing_key:
|
|
115
|
+
specification_version: 4
|
|
116
|
+
summary: HTML Tailwind Design View for Simplecov formatter
|
|
117
|
+
test_files:
|
|
118
|
+
- test/fixtures/app/controllers/sample_controller.rb
|
|
119
|
+
- test/fixtures/app/models/user.rb
|
|
120
|
+
- test/fixtures/sample.rb
|
|
121
|
+
- test/simplecov-tailwindcss/simplecov_tailwindcss_test.rb
|
|
122
|
+
- test/test_helper.rb
|