simplecov-tailwindcss 2.1.0 → 2.1.2
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/.all-contributorsrc +28 -0
- data/{CODE_OF_CONDUCT.md → .github/CODE_OF_CONDUCT.md} +1 -1
- data/.github/CONTRIBUTING.md +66 -0
- data/.github/FUNDING.yml +2 -0
- data/.github/ISSUE_TEMPLATE/bug_report.yml +4 -0
- data/.github/ISSUE_TEMPLATE/config.yml +3 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +2 -2
- data/.github/dependabot.yml +19 -0
- data/.github/workflows/builds.yml +5 -7
- data/.github/workflows/github_publish.yml +1 -1
- data/.github/workflows/lints.yml +2 -5
- data/.github/workflows/rubygem_publish.yml +1 -1
- data/.github/workflows/tests.yml +73 -5
- data/.prettierignore +2 -1
- data/.rubocop.yml +0 -31
- data/.vscode/settings.json +6 -0
- data/CHANGELOG.md +13 -0
- data/README.md +36 -75
- data/dist/app.js +3 -3
- data/lib/simplecov-tailwindcss/version.rb +1 -1
- data/lib/simplecov-tailwindcss.rb +2 -2
- data/package.json +27 -23
- data/prettier.config.js +20 -0
- data/public/application.css +1 -1
- data/public/application.js +2 -2
- data/simplecov-tailwindcss.gemspec +2 -2
- data/yarn.lock +920 -601
- metadata +11 -9
- data/.github/ISSUE_TEMPLATE/question.yml +0 -26
- data/.prettierrc.json +0 -12
- data/CONTRIBUTING.md +0 -132
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simplecov-tailwindcss
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christopher Pezza
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-03-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: simplecov
|
|
@@ -27,22 +27,25 @@ dependencies:
|
|
|
27
27
|
description: HTML Tailwind Design View of Simplecov as a formatterthat is clean, easy
|
|
28
28
|
to read.
|
|
29
29
|
email:
|
|
30
|
-
- chiefpansancolt
|
|
30
|
+
- github@chiefpansancolt.dev
|
|
31
31
|
executables:
|
|
32
32
|
- console
|
|
33
33
|
- setup
|
|
34
34
|
extensions: []
|
|
35
35
|
extra_rdoc_files: []
|
|
36
36
|
files:
|
|
37
|
+
- ".all-contributorsrc"
|
|
37
38
|
- ".erb-lint.yml"
|
|
38
39
|
- ".eslintignore"
|
|
39
40
|
- ".eslintrc.json"
|
|
41
|
+
- ".github/CODE_OF_CONDUCT.md"
|
|
42
|
+
- ".github/CONTRIBUTING.md"
|
|
40
43
|
- ".github/FUNDING.yml"
|
|
41
44
|
- ".github/ISSUE_TEMPLATE/bug_report.yml"
|
|
42
45
|
- ".github/ISSUE_TEMPLATE/config.yml"
|
|
43
46
|
- ".github/ISSUE_TEMPLATE/feature_request.yml"
|
|
44
|
-
- ".github/ISSUE_TEMPLATE/question.yml"
|
|
45
47
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
|
48
|
+
- ".github/dependabot.yml"
|
|
46
49
|
- ".github/workflows/builds.yml"
|
|
47
50
|
- ".github/workflows/github_publish.yml"
|
|
48
51
|
- ".github/workflows/lints.yml"
|
|
@@ -51,12 +54,10 @@ files:
|
|
|
51
54
|
- ".gitignore"
|
|
52
55
|
- ".markdownlint.yml"
|
|
53
56
|
- ".prettierignore"
|
|
54
|
-
- ".prettierrc.json"
|
|
55
57
|
- ".rubocop.yml"
|
|
56
58
|
- ".ruby-version"
|
|
59
|
+
- ".vscode/settings.json"
|
|
57
60
|
- CHANGELOG.md
|
|
58
|
-
- CODE_OF_CONDUCT.md
|
|
59
|
-
- CONTRIBUTING.md
|
|
60
61
|
- Gemfile
|
|
61
62
|
- LICENSE
|
|
62
63
|
- README.md
|
|
@@ -73,6 +74,7 @@ files:
|
|
|
73
74
|
- lib/simplecov-tailwindcss.rb
|
|
74
75
|
- lib/simplecov-tailwindcss/version.rb
|
|
75
76
|
- package.json
|
|
77
|
+
- prettier.config.js
|
|
76
78
|
- public/application.css
|
|
77
79
|
- public/application.js
|
|
78
80
|
- simplecov-tailwindcss.gemspec
|
|
@@ -88,11 +90,11 @@ files:
|
|
|
88
90
|
- views/main.erb
|
|
89
91
|
- views/stat_card.erb
|
|
90
92
|
- yarn.lock
|
|
91
|
-
homepage: https://chiefpansancolt.
|
|
93
|
+
homepage: https://simplecov-tailwind.chiefpansancolt.dev/
|
|
92
94
|
licenses:
|
|
93
95
|
- MIT
|
|
94
96
|
metadata:
|
|
95
|
-
homepage_uri: https://chiefpansancolt.
|
|
97
|
+
homepage_uri: https://simplecov-tailwind.chiefpansancolt.dev/
|
|
96
98
|
source_code_uri: https://github.com/chiefpansancolt/simplecov-tailwindcss
|
|
97
99
|
changelog_uri: https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/master/CHANGELOG.md
|
|
98
100
|
bug_tracker_uri: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
name: Question
|
|
2
|
-
description: Have a Question that is outside bug/feature?
|
|
3
|
-
title: '[Question]: '
|
|
4
|
-
labels: ['question', 'triage']
|
|
5
|
-
assignees:
|
|
6
|
-
- chiefpansancolt
|
|
7
|
-
body:
|
|
8
|
-
- type: markdown
|
|
9
|
-
attributes:
|
|
10
|
-
value: |
|
|
11
|
-
Thanks for taking the time to ask a question about the project!
|
|
12
|
-
- type: textarea
|
|
13
|
-
attributes:
|
|
14
|
-
label: What is the Question?
|
|
15
|
-
placeholder: Tell us what you are thinking about!
|
|
16
|
-
value: 'A Question is happening!'
|
|
17
|
-
validations:
|
|
18
|
-
required: true
|
|
19
|
-
- type: checkboxes
|
|
20
|
-
id: terms
|
|
21
|
-
attributes:
|
|
22
|
-
label: Code of Conduct
|
|
23
|
-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/main/CODE_OF_CONDUCT.md)
|
|
24
|
-
options:
|
|
25
|
-
- label: I agree to follow this project's Code of Conduct
|
|
26
|
-
required: true
|
data/.prettierrc.json
DELETED
data/CONTRIBUTING.md
DELETED
|
@@ -1,132 +0,0 @@
|
|
|
1
|
-
# Contributing to Simplecov Tailwind
|
|
2
|
-
|
|
3
|
-
First and for most thank you for taking the time to look to contribute to
|
|
4
|
-
Simplecov Tailwind, any help is apprciated to make Simplecov Tailwind better
|
|
5
|
-
and stronger!
|
|
6
|
-
|
|
7
|
-
## Table of Contents
|
|
8
|
-
|
|
9
|
-
- [Code of Conduct](#code-of-conduct)
|
|
10
|
-
- [How can I Contribute](#how-can-i-contribute)
|
|
11
|
-
- [Reporting Bugs](#reporting-bugs)
|
|
12
|
-
- [Suggesting Enhancements](#suggesting-enhancements)
|
|
13
|
-
- [Code Contributions](#code-contributions)
|
|
14
|
-
- [Pull Requests](#pull-requests)
|
|
15
|
-
- [Additional Notes](#additional-notes)
|
|
16
|
-
- [Issue and Pull Request Labels](#issue-and-pull-request-labels)
|
|
17
|
-
|
|
18
|
-
## Code of Conduct
|
|
19
|
-
|
|
20
|
-
This project and everyone participating in it is governed by the [Simplecov
|
|
21
|
-
Material Code of Conduct](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/master/CODE_OF_CONDUCT.md).
|
|
22
|
-
By participating, you are expected to uphold this code. Please report
|
|
23
|
-
unacceptable behavior to chiefpansancolt@gmail.com.
|
|
24
|
-
|
|
25
|
-
## How can I Contribute
|
|
26
|
-
|
|
27
|
-
### Reporting Bugs
|
|
28
|
-
|
|
29
|
-
#### Before submitting a bug report
|
|
30
|
-
|
|
31
|
-
This section guides you through submitting a bug report for Simplecov Tailwind.
|
|
32
|
-
Following these guidelines helps maintainers and the community understand your
|
|
33
|
-
report 📝, reproduce the behavior 💻 💻, and find related reports 🔎.
|
|
34
|
-
|
|
35
|
-
Before creating bug reports, please check [this list](https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
|
|
36
|
-
as you might find out that you don't need to create one. When you are creating
|
|
37
|
-
a bug report, please include as many details as possible. Fill out the
|
|
38
|
-
[required template](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/master/.github/ISSUE_TEMPLATE/bug_report.md)
|
|
39
|
-
, the information it asks for helps us resolve issues faster.
|
|
40
|
-
|
|
41
|
-
> Note: If you find a Closed issue that seems like it is the same thing that you're experiencing, open a new issue and include a link to the original issue in the body of your new one.
|
|
42
|
-
|
|
43
|
-
## Suggesting Enhancements
|
|
44
|
-
|
|
45
|
-
This section guides you through submitting an enhancement suggestion for
|
|
46
|
-
Simplecov Tailwind, including completely new features and minor improvements to
|
|
47
|
-
existing functionality. Following these guidelines helps maintainers and the
|
|
48
|
-
community understand your suggestion 📝 and find related suggestions 🔎.
|
|
49
|
-
|
|
50
|
-
Before creating enhancement suggestions, please check [this list](https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement)
|
|
51
|
-
as you might find out that you don't need to create one. When you are creating
|
|
52
|
-
an enhancement suggestion, please include as many details as possible. Fill in
|
|
53
|
-
the [template](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/master/.github/ISSUE_TEMPLATE/feature-request.md)
|
|
54
|
-
, including the steps that you imagine you would take if the feature you're
|
|
55
|
-
requesting existed.
|
|
56
|
-
|
|
57
|
-
## Code Contributions
|
|
58
|
-
|
|
59
|
-
Looking to contribute to Simplecov? You can look for any tickets tagged with `help-wanted`
|
|
60
|
-
|
|
61
|
-
- [Help wanted issues](https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22) - issues which could use help form the community to help complete
|
|
62
|
-
|
|
63
|
-
## Pull Requests
|
|
64
|
-
|
|
65
|
-
The process described here has several goals:
|
|
66
|
-
|
|
67
|
-
- Maintain Simplecov Tailwind's quality
|
|
68
|
-
- Fix problems that are important to users
|
|
69
|
-
- Engage the community in working toward the best possible Simplecov Tailwind Interaction
|
|
70
|
-
- Enable a sustainable system for Simplecov Tailwind's maintainers to review contributions
|
|
71
|
-
|
|
72
|
-
Please follow these steps to have your contribution considered by the maintainers:
|
|
73
|
-
|
|
74
|
-
- Follow all instructions in [the template](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/master/.github/PULL_REQUEST_TEMPLATE.md)
|
|
75
|
-
- After you submit your pull request, verify that all status checks are passing<details><summary>What if the status checks are failing?</summary>If a status check is failing, and you believe that the failure is unrelated to your change, please leave a comment on the pull request explaining why you believe the failure is unrelated. A maintainer will re-run the status check for you. If we conclude that the failure was a false positive, then we will open an issue to track that problem with our status check suite.</details>
|
|
76
|
-
|
|
77
|
-
While the prerequisites above must be satisfied prior to having your pull request reviewed, the reviewer(s) may ask you to complete additional design work, tests, or other changes before your pull request can be ultimately accepted.
|
|
78
|
-
|
|
79
|
-
## Additional Notes
|
|
80
|
-
|
|
81
|
-
### Issue and Pull Request Labels
|
|
82
|
-
|
|
83
|
-
This section lists the labels we use to help us track and manage issues and pull requests.
|
|
84
|
-
|
|
85
|
-
[GitHub search](https://help.github.com/articles/searching-issues/) makes it easy to use labels for finding groups of issues or pull requests you're interested in. For example, you might be interested in opening an Issue or perhaps opening a pull request. To help you find issues and pull requests, each label is listed with search links for finding open items with that label in Simplecov Tailwind. We encourage you to read about [other search filters](https://help.github.com/articles/searching-issues/) which will help you write more focused queries.
|
|
86
|
-
|
|
87
|
-
#### Type of Issue and Issue State
|
|
88
|
-
|
|
89
|
-
| Label Name | Repo | Description |
|
|
90
|
-
| ------------------------- | -------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
91
|
-
| `enhancement` | [search][search-simplecov-tailwindcss-label-enhancement] | Feature requests. |
|
|
92
|
-
| `bug` | [search][search-simplecov-tailwindcss-label-bug] | Confirmed bugs or reports that are very likely to be bugs. |
|
|
93
|
-
| `question` | [search][search-simplecov-tailwindcss-label-question] | Questions more than bug reports or feature requests (e.g. how do I do X). |
|
|
94
|
-
| `feedback` | [search][search-simplecov-tailwindcss-label-feedback] | General feedback more than bug reports or feature requests. |
|
|
95
|
-
| `help-wanted` | [search][search-simplecov-tailwindcss-label-help-wanted] | The Simplecov Tailwind team would appreciate help from the community in resolving these issues. |
|
|
96
|
-
| `more-information-needed` | [search][search-simplecov-tailwindcss-label-more-information-needed] | More information needs to be collected about these problems or feature requests (e.g. steps to reproduce). |
|
|
97
|
-
| `needs-reproduction` | [search][search-simplecov-tailwindcss-label-needs-reproduction] | Likely bugs, but haven't been reliably reproduced. |
|
|
98
|
-
| `blocked` | [search][search-simplecov-tailwindcss-label-blocked] | Issues blocked on other issues. |
|
|
99
|
-
| `duplicate` | [search][search-simplecov-tailwindcss-label-duplicate] | Issues which are duplicates of other issues, i.e. they have been reported before. |
|
|
100
|
-
| `wontfix` | [search][search-simplecov-tailwindcss-label-wontfix] | The Simplecov Material team has decided not to fix these issues for now, either because they're working as intended or for some other reason. |
|
|
101
|
-
| `invalid` | [search][search-simplecov-tailwindcss-label-invalid] | Issues which aren't valid (e.g. user errors). |
|
|
102
|
-
| `new` | [search][search-simplecov-tailwindcss-label-new] | Tagged on Issues that are new and have not been reviewed. |
|
|
103
|
-
| `tech debt` | [search][search-simplecov-tailwindcss-label-tech-debt] | Items to clean up / refactor / restructure |
|
|
104
|
-
|
|
105
|
-
#### Pull Request Labels
|
|
106
|
-
|
|
107
|
-
| Label Name | Repo | Description |
|
|
108
|
-
| ------------------ | ------------------------------------------------------------- | ---------------------------------------------------------------------------------------- |
|
|
109
|
-
| `work-in-progress` | [search][search-simplecov-tailwindcss-label-work-in-progress] | Pull Requests which are still being worked on, more changes will follow. |
|
|
110
|
-
| `needs-review` | [search][search-simplecov-tailwindcss-label-needs-review] | Pull Requests which need code review, and approval from maintainers. |
|
|
111
|
-
| `under-review` | [search][search-simplecov-tailwindcss-label-under-review] | Pull Requests being reviewed by maintainers. |
|
|
112
|
-
| `requires-changes` | [search][search-simplecov-tailwindcss-label-requires-changes] | Pull Requests which need to be updated based on review comments and then reviewed again. |
|
|
113
|
-
| `needs-testing` | [search][search-simplecov-tailwindcss-label-needs-testing] | Pull Requests which need manual testing. |
|
|
114
|
-
|
|
115
|
-
[search-simplecov-tailwindcss-label-enhancement]: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement
|
|
116
|
-
[search-simplecov-tailwindcss-label-bug]: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3Abug
|
|
117
|
-
[search-simplecov-tailwindcss-label-question]: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3Aquestion
|
|
118
|
-
[search-simplecov-tailwindcss-label-feedback]: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3Afeedback
|
|
119
|
-
[search-simplecov-tailwindcss-label-help-wanted]: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22
|
|
120
|
-
[search-simplecov-tailwindcss-label-more-information-needed]: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3A%22more+information+needed%22
|
|
121
|
-
[search-simplecov-tailwindcss-label-needs-reproduction]: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3A%22needs+reproduction%22
|
|
122
|
-
[search-simplecov-tailwindcss-label-blocked]: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3Ablocked
|
|
123
|
-
[search-simplecov-tailwindcss-label-duplicate]: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3Aduplicate
|
|
124
|
-
[search-simplecov-tailwindcss-label-wontfix]: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3Awontfix
|
|
125
|
-
[search-simplecov-tailwindcss-label-invalid]: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3Ainvalid
|
|
126
|
-
[search-simplecov-tailwindcss-label-new]: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3Anew
|
|
127
|
-
[search-simplecov-tailwindcss-label-tech-debt]: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3A"tech+debt"
|
|
128
|
-
[search-simplecov-tailwindcss-label-work-in-progress]: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3A"work+in+progress"
|
|
129
|
-
[search-simplecov-tailwindcss-label-needs-review]: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3A"needs+review"
|
|
130
|
-
[search-simplecov-tailwindcss-label-under-review]: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3A"under+review"
|
|
131
|
-
[search-simplecov-tailwindcss-label-requires-changes]: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3A"requires+changes"
|
|
132
|
-
[search-simplecov-tailwindcss-label-needs-testing]: https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3A"needs+testing"
|