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
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2a34f0fa86c77ab1ed362288b9ed46149750507b3f7a4d9667dcbdffdac82237
|
|
4
|
+
data.tar.gz: 129ece0962a3bc82d3839016068b23757046e771a14164318f49089d0ae66106
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c632e16e806771e162c66b605cc6b40be67723b11550dc104297c32873c0ef3731f915a5556d0ad41fbfa17f3c6f9cf79192a4b664fb775ec0e670d473c817af
|
|
7
|
+
data.tar.gz: 32de41b1f912db2fa5d86518973e64b7afee993c9292bb3e77c5c8933f348f979b630b401f23d05991a1a3d79fb79571c35a95d69931669f76801c86940e67de
|
data/.all-contributorsrc
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"files": [
|
|
3
|
+
"README.md"
|
|
4
|
+
],
|
|
5
|
+
"imageSize": 100,
|
|
6
|
+
"commit": false,
|
|
7
|
+
"contributors": [
|
|
8
|
+
{
|
|
9
|
+
"login": "chiefpansancolt",
|
|
10
|
+
"name": "Christopher Pezza",
|
|
11
|
+
"avatar_url": "https://avatars3.githubusercontent.com/u/5841177?v=4",
|
|
12
|
+
"profile": "https://chrispezza.me",
|
|
13
|
+
"contributions": [
|
|
14
|
+
"code",
|
|
15
|
+
"doc",
|
|
16
|
+
"tool",
|
|
17
|
+
"test",
|
|
18
|
+
"maintenance"
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"contributorsPerLine": 7,
|
|
23
|
+
"projectName": "simplecov-tailwindcss",
|
|
24
|
+
"projectOwner": "chiefpansancolt",
|
|
25
|
+
"repoType": "github",
|
|
26
|
+
"repoHost": "https://github.com",
|
|
27
|
+
"skipCi": true
|
|
28
|
+
}
|
|
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
|
|
|
55
55
|
## Enforcement
|
|
56
56
|
|
|
57
57
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
-
reported by contacting the project team at chiefpansancolt
|
|
58
|
+
reported by contacting the project team at github@chiefpansancolt.dev. All
|
|
59
59
|
complaints will be reviewed and investigated and will result in a response that
|
|
60
60
|
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
61
|
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
@@ -0,0 +1,66 @@
|
|
|
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
|
+
## Code of Conduct
|
|
8
|
+
|
|
9
|
+
This project and everyone participating in it is governed by the [Simplecov
|
|
10
|
+
Material Code of Conduct](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/main/.github/CODE_OF_CONDUCT.md).
|
|
11
|
+
By participating, you are expected to uphold this code. Please report
|
|
12
|
+
unacceptable behavior to github@chiefpansancolt.dev.
|
|
13
|
+
|
|
14
|
+
## How can I Contribute
|
|
15
|
+
|
|
16
|
+
### Reporting Bugs
|
|
17
|
+
|
|
18
|
+
#### Before submitting a bug report
|
|
19
|
+
|
|
20
|
+
This section guides you through submitting a bug report for Simplecov Tailwind.
|
|
21
|
+
Following these guidelines helps maintainers and the community understand your
|
|
22
|
+
report 📝, reproduce the behavior 💻 💻, and find related reports 🔎.
|
|
23
|
+
|
|
24
|
+
Before creating bug reports, please check [this list](https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
|
|
25
|
+
as you might find out that you don't need to create one. When you are creating
|
|
26
|
+
a bug report, please include as many details as possible. Fill out the
|
|
27
|
+
[required form](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/main/.github/ISSUE_TEMPLATE/bug_report.md)
|
|
28
|
+
, the information it asks for helps us resolve issues faster.
|
|
29
|
+
|
|
30
|
+
> 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.
|
|
31
|
+
|
|
32
|
+
## Suggesting Enhancements
|
|
33
|
+
|
|
34
|
+
This section guides you through submitting an enhancement suggestion for
|
|
35
|
+
Simplecov Tailwind, including completely new features and minor improvements to
|
|
36
|
+
existing functionality. Following these guidelines helps maintainers and the
|
|
37
|
+
community understand your suggestion 📝 and find related suggestions 🔎.
|
|
38
|
+
|
|
39
|
+
Before creating enhancement suggestions, please check [this list](https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement)
|
|
40
|
+
as you might find out that you don't need to create one. When you are creating
|
|
41
|
+
an enhancement suggestion, please include as many details as possible. Fill in
|
|
42
|
+
the [form](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/main/.github/ISSUE_TEMPLATE/feature-request.md)
|
|
43
|
+
, including the steps that you imagine you would take if the feature you're
|
|
44
|
+
requesting existed.
|
|
45
|
+
|
|
46
|
+
## Code Contributions
|
|
47
|
+
|
|
48
|
+
Looking to contribute to Simplecov Tailwind? You can look for any tickets tagged with `help-wanted`
|
|
49
|
+
|
|
50
|
+
- [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
|
|
51
|
+
|
|
52
|
+
## Pull Requests
|
|
53
|
+
|
|
54
|
+
The process described here has several goals:
|
|
55
|
+
|
|
56
|
+
- Maintain Simplecov Tailwind's quality
|
|
57
|
+
- Fix problems that are important to users
|
|
58
|
+
- Engage the community in working toward the best possible Simplecov Tailwind Interaction
|
|
59
|
+
- Enable a sustainable system for Simplecov Tailwind's maintainers to review contributions
|
|
60
|
+
|
|
61
|
+
Please follow these steps to have your contribution considered by the maintainers:
|
|
62
|
+
|
|
63
|
+
- Follow all instructions in [the template](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/main/.github/PULL_REQUEST_TEMPLATE.md)
|
|
64
|
+
- 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>
|
|
65
|
+
|
|
66
|
+
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.
|
data/.github/FUNDING.yml
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
blank_issues_enabled: false
|
|
2
2
|
contact_links:
|
|
3
|
+
- name: Get Help
|
|
4
|
+
url: https://github.com/chiefpansancolt/simplecov-tailwindcss/discussions/new?category=help
|
|
5
|
+
about: If you can't get something to work the way you expect, open a question in our discussion forums.
|
|
3
6
|
- name: GitHub Community Support
|
|
4
7
|
url: https://github.community/
|
|
5
8
|
about: Please ask and answer questions here.
|
|
@@ -13,14 +13,14 @@ Please delete options that are not relevant.
|
|
|
13
13
|
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
|
|
14
14
|
- [ ] This change requires a documentation update
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
## How Has This Been Tested?
|
|
17
17
|
|
|
18
18
|
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration
|
|
19
19
|
|
|
20
20
|
- [ ] Test A
|
|
21
21
|
- [ ] Test B
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
## Checklist
|
|
24
24
|
|
|
25
25
|
- [ ] My code follows the style guidelines of this project
|
|
26
26
|
- [ ] I have performed a self-review of my own code
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
updates:
|
|
3
|
+
# Maintain dependencies for GitHub Actions
|
|
4
|
+
- package-ecosystem: 'github-actions'
|
|
5
|
+
directory: '/'
|
|
6
|
+
schedule:
|
|
7
|
+
interval: 'weekly'
|
|
8
|
+
|
|
9
|
+
# Maintain dependencies for npm
|
|
10
|
+
- package-ecosystem: 'npm'
|
|
11
|
+
directory: '/'
|
|
12
|
+
schedule:
|
|
13
|
+
interval: 'weekly'
|
|
14
|
+
|
|
15
|
+
# Maintain dependencies for Ruby
|
|
16
|
+
- package-ecosystem: 'bundler'
|
|
17
|
+
directory: '/'
|
|
18
|
+
schedule:
|
|
19
|
+
interval: 'weekly'
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
name: Build
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- main
|
|
7
4
|
pull_request:
|
|
8
5
|
branches:
|
|
9
6
|
- main
|
|
@@ -19,7 +16,7 @@ jobs:
|
|
|
19
16
|
|
|
20
17
|
steps:
|
|
21
18
|
- name: Check out Git repository
|
|
22
|
-
uses: actions/checkout@
|
|
19
|
+
uses: actions/checkout@v3
|
|
23
20
|
|
|
24
21
|
- name: Set up Node.js
|
|
25
22
|
uses: actions/setup-node@v3
|
|
@@ -44,7 +41,7 @@ jobs:
|
|
|
44
41
|
|
|
45
42
|
steps:
|
|
46
43
|
- name: Check out Git repository
|
|
47
|
-
uses: actions/checkout@
|
|
44
|
+
uses: actions/checkout@v3
|
|
48
45
|
|
|
49
46
|
- name: Set up Node.js
|
|
50
47
|
uses: actions/setup-node@v3
|
|
@@ -66,10 +63,11 @@ jobs:
|
|
|
66
63
|
run-gem-build:
|
|
67
64
|
name: Run Gem Build
|
|
68
65
|
runs-on: ubuntu-latest
|
|
66
|
+
needs: [run-css-build, run-js-build]
|
|
69
67
|
|
|
70
68
|
steps:
|
|
71
69
|
- name: Check out Git repository
|
|
72
|
-
uses: actions/checkout@
|
|
70
|
+
uses: actions/checkout@v3
|
|
73
71
|
|
|
74
72
|
- name: Set up Ruby
|
|
75
73
|
uses: ruby/setup-ruby@v1
|
|
@@ -78,7 +76,7 @@ jobs:
|
|
|
78
76
|
|
|
79
77
|
- name: Install Ruby Gem dependencies
|
|
80
78
|
run: |
|
|
81
|
-
gem install bundler -v 2.
|
|
79
|
+
gem install bundler -v 2.4.10
|
|
82
80
|
bundle install --jobs 4 --retry 3
|
|
83
81
|
|
|
84
82
|
- name: Build Gem
|
data/.github/workflows/lints.yml
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
name: Lint
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- main
|
|
7
4
|
pull_request:
|
|
8
5
|
branches:
|
|
9
6
|
- main
|
|
@@ -19,7 +16,7 @@ jobs:
|
|
|
19
16
|
|
|
20
17
|
steps:
|
|
21
18
|
- name: Check out Git repository
|
|
22
|
-
uses: actions/checkout@
|
|
19
|
+
uses: actions/checkout@v3
|
|
23
20
|
|
|
24
21
|
- name: Set up Node.js
|
|
25
22
|
uses: actions/setup-node@v3
|
|
@@ -36,7 +33,7 @@ jobs:
|
|
|
36
33
|
|
|
37
34
|
- name: Install Ruby Gem dependencies
|
|
38
35
|
run: |
|
|
39
|
-
gem install bundler -v 2.
|
|
36
|
+
gem install bundler -v 2.4.10
|
|
40
37
|
bundle install --jobs 4 --retry 3
|
|
41
38
|
|
|
42
39
|
- name: Run linters
|
data/.github/workflows/tests.yml
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
name: Tests
|
|
2
2
|
|
|
3
|
-
on:
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
4
7
|
|
|
5
8
|
jobs:
|
|
6
|
-
ruby-test:
|
|
9
|
+
ruby-test-old:
|
|
7
10
|
runs-on: ubuntu-latest
|
|
8
11
|
|
|
9
12
|
strategy:
|
|
10
13
|
matrix:
|
|
11
|
-
ruby: [
|
|
14
|
+
ruby: [2.5.9]
|
|
12
15
|
|
|
13
16
|
steps:
|
|
14
17
|
- name: Checkout Code
|
|
15
|
-
uses: actions/checkout@
|
|
18
|
+
uses: actions/checkout@v3
|
|
16
19
|
- name: Set up Ruby
|
|
17
20
|
uses: ruby/setup-ruby@v1
|
|
18
21
|
with:
|
|
@@ -20,7 +23,72 @@ jobs:
|
|
|
20
23
|
|
|
21
24
|
- name: Build and Test
|
|
22
25
|
run: |
|
|
23
|
-
gem install bundler -v 2.3.
|
|
26
|
+
gem install bundler -v 2.3.26
|
|
27
|
+
bundle install --jobs 4 --retry 3
|
|
28
|
+
bundle exec rake test
|
|
29
|
+
|
|
30
|
+
ruby-test-other:
|
|
31
|
+
runs-on: ubuntu-latest
|
|
32
|
+
|
|
33
|
+
strategy:
|
|
34
|
+
matrix:
|
|
35
|
+
ruby: [3.1.2, 3.0.4, 2.7.6, 2.6.10]
|
|
36
|
+
|
|
37
|
+
steps:
|
|
38
|
+
- name: Checkout Code
|
|
39
|
+
uses: actions/checkout@v3
|
|
40
|
+
- name: Set up Ruby
|
|
41
|
+
uses: ruby/setup-ruby@v1
|
|
42
|
+
with:
|
|
43
|
+
ruby-version: ${{ matrix.ruby }}
|
|
44
|
+
|
|
45
|
+
- name: Build and Test
|
|
46
|
+
run: |
|
|
47
|
+
gem install bundler -v 2.4.10
|
|
48
|
+
bundle install --jobs 4 --retry 3
|
|
49
|
+
bundle exec rake test
|
|
50
|
+
|
|
51
|
+
ruby-test-head:
|
|
52
|
+
runs-on: ubuntu-latest
|
|
53
|
+
needs: [ruby-test-old, ruby-test-other, ruby-test-latest]
|
|
54
|
+
|
|
55
|
+
strategy:
|
|
56
|
+
matrix:
|
|
57
|
+
ruby: [head]
|
|
58
|
+
|
|
59
|
+
steps:
|
|
60
|
+
- name: Checkout Code
|
|
61
|
+
uses: actions/checkout@v3
|
|
62
|
+
- name: Set up Ruby
|
|
63
|
+
uses: ruby/setup-ruby@v1
|
|
64
|
+
with:
|
|
65
|
+
ruby-version: ${{ matrix.ruby }}
|
|
66
|
+
|
|
67
|
+
- name: Build and Test
|
|
68
|
+
run: |
|
|
69
|
+
gem install bundler -v 2.4.10
|
|
70
|
+
bundle install --jobs 4 --retry 3
|
|
71
|
+
bundle exec rake test
|
|
72
|
+
|
|
73
|
+
ruby-test-latest:
|
|
74
|
+
runs-on: ubuntu-latest
|
|
75
|
+
needs: [ruby-test-other, ruby-test-old]
|
|
76
|
+
|
|
77
|
+
strategy:
|
|
78
|
+
matrix:
|
|
79
|
+
ruby: [3.2.1]
|
|
80
|
+
|
|
81
|
+
steps:
|
|
82
|
+
- name: Checkout Code
|
|
83
|
+
uses: actions/checkout@v3
|
|
84
|
+
- name: Set up Ruby
|
|
85
|
+
uses: ruby/setup-ruby@v1
|
|
86
|
+
with:
|
|
87
|
+
ruby-version: ${{ matrix.ruby }}
|
|
88
|
+
|
|
89
|
+
- name: Build and Test
|
|
90
|
+
run: |
|
|
91
|
+
gem install bundler -v 2.4.10
|
|
24
92
|
bundle install --jobs 4 --retry 3
|
|
25
93
|
bundle exec rake test
|
|
26
94
|
- name: Upload coverage results
|
data/.prettierignore
CHANGED
data/.rubocop.yml
CHANGED
|
@@ -170,13 +170,6 @@ Bundler/OrderedGems:
|
|
|
170
170
|
|
|
171
171
|
#################### Gemspec ###############################
|
|
172
172
|
|
|
173
|
-
Gemspec/DateAssignment:
|
|
174
|
-
Description: 'Checks that `date =` is not used in gemspec file, it is set automatically when the gem is packaged.'
|
|
175
|
-
Enabled: pending
|
|
176
|
-
VersionAdded: '1.10'
|
|
177
|
-
Include:
|
|
178
|
-
- '**/*.gemspec'
|
|
179
|
-
|
|
180
173
|
Gemspec/DependencyVersion:
|
|
181
174
|
Description: 'Requires or forbids specifying gem dependency versions.'
|
|
182
175
|
Enabled: false
|
|
@@ -1171,7 +1164,6 @@ Lint/AmbiguousBlockAssociation:
|
|
|
1171
1164
|
Enabled: true
|
|
1172
1165
|
VersionAdded: '0.48'
|
|
1173
1166
|
VersionChanged: '1.13'
|
|
1174
|
-
IgnoredMethods: []
|
|
1175
1167
|
|
|
1176
1168
|
Lint/AmbiguousOperator:
|
|
1177
1169
|
Description: >-
|
|
@@ -1530,7 +1522,6 @@ Lint/InheritException:
|
|
|
1530
1522
|
Lint/InterpolationCheck:
|
|
1531
1523
|
Description: 'Raise warning for interpolation in single q strs.'
|
|
1532
1524
|
Enabled: true
|
|
1533
|
-
Safe: false
|
|
1534
1525
|
VersionAdded: '0.50'
|
|
1535
1526
|
VersionChanged: '0.87'
|
|
1536
1527
|
|
|
@@ -1625,7 +1616,6 @@ Lint/NumberConversion:
|
|
|
1625
1616
|
VersionAdded: '0.53'
|
|
1626
1617
|
VersionChanged: '1.1'
|
|
1627
1618
|
SafeAutoCorrect: false
|
|
1628
|
-
IgnoredMethods: []
|
|
1629
1619
|
IgnoredClasses:
|
|
1630
1620
|
- Time
|
|
1631
1621
|
- DateTime
|
|
@@ -2060,7 +2050,6 @@ Metrics/AbcSize:
|
|
|
2060
2050
|
Enabled: true
|
|
2061
2051
|
VersionAdded: '0.27'
|
|
2062
2052
|
VersionChanged: '1.5'
|
|
2063
|
-
IgnoredMethods: []
|
|
2064
2053
|
CountRepeatedAttributes: true
|
|
2065
2054
|
Max: 17
|
|
2066
2055
|
|
|
@@ -2072,8 +2061,6 @@ Metrics/BlockLength:
|
|
|
2072
2061
|
CountComments: false
|
|
2073
2062
|
Max: 25
|
|
2074
2063
|
CountAsOne: []
|
|
2075
|
-
IgnoredMethods:
|
|
2076
|
-
- refine
|
|
2077
2064
|
Exclude:
|
|
2078
2065
|
- '**/*.gemspec'
|
|
2079
2066
|
|
|
@@ -2102,7 +2089,6 @@ Metrics/CyclomaticComplexity:
|
|
|
2102
2089
|
Enabled: true
|
|
2103
2090
|
VersionAdded: '0.25'
|
|
2104
2091
|
VersionChanged: '0.81'
|
|
2105
|
-
IgnoredMethods: []
|
|
2106
2092
|
Max: 7
|
|
2107
2093
|
|
|
2108
2094
|
Metrics/MethodLength:
|
|
@@ -2114,7 +2100,6 @@ Metrics/MethodLength:
|
|
|
2114
2100
|
CountComments: false
|
|
2115
2101
|
Max: 10
|
|
2116
2102
|
CountAsOne: []
|
|
2117
|
-
IgnoredMethods: []
|
|
2118
2103
|
|
|
2119
2104
|
Metrics/ModuleLength:
|
|
2120
2105
|
Description: 'Avoid modules longer than 100 lines of code.'
|
|
@@ -2142,7 +2127,6 @@ Metrics/PerceivedComplexity:
|
|
|
2142
2127
|
Enabled: true
|
|
2143
2128
|
VersionAdded: '0.25'
|
|
2144
2129
|
VersionChanged: '0.81'
|
|
2145
|
-
IgnoredMethods: []
|
|
2146
2130
|
Max: 8
|
|
2147
2131
|
|
|
2148
2132
|
################## Migration #############################
|
|
@@ -2635,10 +2619,6 @@ Style/BlockDelimiters:
|
|
|
2635
2619
|
- let!
|
|
2636
2620
|
- subject
|
|
2637
2621
|
- watch
|
|
2638
|
-
IgnoredMethods:
|
|
2639
|
-
- lambda
|
|
2640
|
-
- proc
|
|
2641
|
-
- it
|
|
2642
2622
|
AllowBracesOnProceduralOneLiners: false
|
|
2643
2623
|
BracesRequiredMethods: []
|
|
2644
2624
|
|
|
@@ -2689,10 +2669,6 @@ Style/ClassEqualityComparison:
|
|
|
2689
2669
|
StyleGuide: '#instance-of-vs-class-comparison'
|
|
2690
2670
|
Enabled: true
|
|
2691
2671
|
VersionAdded: '0.93'
|
|
2692
|
-
IgnoredMethods:
|
|
2693
|
-
- ==
|
|
2694
|
-
- equal?
|
|
2695
|
-
- eql?
|
|
2696
2672
|
|
|
2697
2673
|
Style/ClassMethods:
|
|
2698
2674
|
Description: 'Use self when defining module/class methods.'
|
|
@@ -3099,7 +3075,6 @@ Style/FormatStringToken:
|
|
|
3099
3075
|
MaxUnannotatedPlaceholdersAllowed: 1
|
|
3100
3076
|
VersionAdded: '0.49'
|
|
3101
3077
|
VersionChanged: '1.0'
|
|
3102
|
-
IgnoredMethods: []
|
|
3103
3078
|
|
|
3104
3079
|
Style/FrozenStringLiteralComment:
|
|
3105
3080
|
Description: >-
|
|
@@ -3383,7 +3358,6 @@ Style/MethodCallWithArgsParentheses:
|
|
|
3383
3358
|
VersionAdded: '0.47'
|
|
3384
3359
|
VersionChanged: '1.7'
|
|
3385
3360
|
IgnoreMacros: true
|
|
3386
|
-
IgnoredMethods: []
|
|
3387
3361
|
AllowedPatterns: []
|
|
3388
3362
|
IncludedMacros: []
|
|
3389
3363
|
AllowParenthesesInMultilineCall: false
|
|
@@ -3399,7 +3373,6 @@ Style/MethodCallWithoutArgsParentheses:
|
|
|
3399
3373
|
Description: 'Do not use parentheses for method calls with no arguments.'
|
|
3400
3374
|
StyleGuide: '#method-invocation-parens'
|
|
3401
3375
|
Enabled: true
|
|
3402
|
-
IgnoredMethods: []
|
|
3403
3376
|
VersionAdded: '0.47'
|
|
3404
3377
|
VersionChanged: '0.55'
|
|
3405
3378
|
|
|
@@ -3737,7 +3710,6 @@ Style/NumericPredicate:
|
|
|
3737
3710
|
SupportedStyles:
|
|
3738
3711
|
- predicate
|
|
3739
3712
|
- comparison
|
|
3740
|
-
IgnoredMethods: []
|
|
3741
3713
|
Exclude:
|
|
3742
3714
|
- 'spec/**/*'
|
|
3743
3715
|
|
|
@@ -4339,9 +4311,6 @@ Style/SymbolProc:
|
|
|
4339
4311
|
VersionAdded: '0.26'
|
|
4340
4312
|
VersionChanged: '1.28'
|
|
4341
4313
|
AllowMethodsWithArguments: false
|
|
4342
|
-
IgnoredMethods:
|
|
4343
|
-
- respond_to
|
|
4344
|
-
- define_method
|
|
4345
4314
|
AllowComments: false
|
|
4346
4315
|
|
|
4347
4316
|
Style/TernaryParentheses:
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{
|
|
2
|
+
"yaml.schemas": {
|
|
3
|
+
"https://json.schemastore.org/github-issue-config.json": "file:///Users/chiefpansancolt/Documents/GitHub/ruby-gems/simplecov-tailwindcss/.github/ISSUE_TEMPLATE/config.yml",
|
|
4
|
+
"https://json.schemastore.org/dependabot-2.0.json": "file:///Users/chiefpansancolt/Documents/GitHub/ruby-gems/simplecov-tailwindcss/.github/dependabot.yml"
|
|
5
|
+
}
|
|
6
|
+
}
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Version [2.1.2](https://github.com/chiefpansancolt/simplecov-tailwindcss/releases/tag/2.1.2)
|
|
4
|
+
|
|
5
|
+
### Updates
|
|
6
|
+
|
|
7
|
+
- Dependency version bumps to stay up to date.
|
|
8
|
+
- Updates to emails and websites ref in gemspec
|
|
9
|
+
|
|
10
|
+
## Version [2.1.1](https://github.com/chiefpansancolt/simplecov-tailwindcss/releases/tag/2.1.1)
|
|
11
|
+
|
|
12
|
+
### Updates
|
|
13
|
+
|
|
14
|
+
- Dependency version bumps to stay up to date.
|
|
15
|
+
|
|
3
16
|
## Version [2.1.0](https://github.com/chiefpansancolt/simplecov-tailwindcss/releases/tag/2.1.0)
|
|
4
17
|
|
|
5
18
|
### Features
|