standard 1.4.0 → 1.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +10 -0
- data/.github/workflows/test.yml +5 -1
- data/.github/workflows/update.yml +52 -0
- data/.standard.yml +1 -1
- data/CHANGELOG.md +18 -3
- data/Gemfile.lock +13 -13
- data/README.md +80 -41
- data/config/base.yml +29 -1
- data/config/ruby-1.8.yml +6 -0
- data/config/ruby-2.2.yml +3 -0
- data/config/ruby-3.0.yml +10 -0
- data/lib/standard/creates_config_store/assigns_rubocop_yaml.rb +1 -1
- data/lib/standard/version.rb +1 -1
- data/standard.gemspec +3 -3
- metadata +11 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9d7e41be999895d2ccd72d50fd5023792af89a2e0456ebadf233d1bab9769e2
|
4
|
+
data.tar.gz: 1a5387cefbf33539d46001b751ea9a7ad800d6dcc940f422421097e561dcba00
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9174f67d57161c8b3cd8942f67399a3260e8c86e232c7e82c7d865ae147bc50eec2eece52bec727dddf336ac64e24311ba0d933c5432491da364fda3ad4cc70a
|
7
|
+
data.tar.gz: 84d4bb6c00601685030464d0d89c432ce4ae15d6f7b3d43a592b424b86b950efd0a43236957de51cb7fd52049491b3f3fda0db09985d51a9e09adad3b82579b5
|
data/.github/workflows/test.yml
CHANGED
@@ -5,6 +5,10 @@ on:
|
|
5
5
|
branches: [ main ]
|
6
6
|
pull_request:
|
7
7
|
branches: [ main ]
|
8
|
+
workflow_run:
|
9
|
+
workflows: ["Update"]
|
10
|
+
types:
|
11
|
+
- completed
|
8
12
|
|
9
13
|
jobs:
|
10
14
|
test:
|
@@ -12,7 +16,7 @@ jobs:
|
|
12
16
|
strategy:
|
13
17
|
matrix:
|
14
18
|
os: [ ubuntu-latest ]
|
15
|
-
ruby-version: [2.
|
19
|
+
ruby-version: [2.6, 2.7, '3.0', 3.1]
|
16
20
|
|
17
21
|
runs-on: ${{ matrix.os }}
|
18
22
|
|
@@ -0,0 +1,52 @@
|
|
1
|
+
name: Update
|
2
|
+
|
3
|
+
on:
|
4
|
+
workflow_dispatch:
|
5
|
+
schedule:
|
6
|
+
- cron: '5 7 * * 1'
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
update:
|
10
|
+
name: Check for updates
|
11
|
+
|
12
|
+
runs-on: ubuntu-latest
|
13
|
+
|
14
|
+
steps:
|
15
|
+
- uses: actions/checkout@v2
|
16
|
+
- name: Set up Ruby
|
17
|
+
uses: ruby/setup-ruby@v1
|
18
|
+
with:
|
19
|
+
ruby-version: 3.0.0
|
20
|
+
bundler-cache: true
|
21
|
+
- name: Unset bundler deployment
|
22
|
+
run: bundle config unset deployment
|
23
|
+
- name: Get Outdated
|
24
|
+
id: outdated
|
25
|
+
run: |
|
26
|
+
eval "$(bundle outdated rubocop rubocop-performance |
|
27
|
+
grep rubocop |
|
28
|
+
awk '{print "echo \"::set-output name="$1"_OLD::"$2"\"; echo \"::set-output name="$1"_NEW::"$3"\";"}' - )";
|
29
|
+
- name: Update Changelog
|
30
|
+
run: |
|
31
|
+
eval "$(bundle outdated rubocop rubocop-performance |
|
32
|
+
grep rubocop |
|
33
|
+
awk '{print "sed -i \"2i* Update "$1" from "$2" to ["$3"](https://github.com/rubocop/"$1"/tag/v"$3")\" CHANGELOG.md"}' - )";
|
34
|
+
sed -i '2i\\n## Unreleased\n' CHANGELOG.md;
|
35
|
+
- name: Update Gemspec
|
36
|
+
run: |
|
37
|
+
eval "$(bundle outdated rubocop rubocop-performance |
|
38
|
+
grep rubocop |
|
39
|
+
awk '{print "sed -i /\"" $1 "\"/s/" $2 "/" $3 "/ standard.gemspec"}' - )"
|
40
|
+
- name: Update Gemfile
|
41
|
+
run: bundle update
|
42
|
+
- name: Get current date
|
43
|
+
id: date
|
44
|
+
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
|
45
|
+
- name: Create Pull Request
|
46
|
+
uses: peter-evans/create-pull-request@v3
|
47
|
+
with:
|
48
|
+
reviewers: camilopayan
|
49
|
+
commit-message: '[ ${{ steps.date.outputs.date }} ] - Update dependencies'
|
50
|
+
title: '[ ${{ steps.date.outputs.date }} ] - Update dependencies'
|
51
|
+
delete-branch: true
|
52
|
+
branch: update-deps-${{ steps.date.outputs.date }}
|
data/.standard.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,13 +1,28 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
##
|
3
|
+
## 1.7.1
|
4
4
|
|
5
|
-
*
|
6
|
-
|
5
|
+
* Update rubocop from 1.25.0 to [1.25.1](https://github.com/rubocop/rubocop/tag/v1.25.1)
|
6
|
+
|
7
|
+
## 1.7.0
|
8
|
+
|
9
|
+
* Update rubocop-performance from 1.13.1 to [1.13.2](https://github.com/rubocop/rubocop-performance/tag/v1.13.2)
|
10
|
+
* Update rubocop from 1.24.1 to [1.25.0](https://github.com/rubocop/rubocop/tag/v1.25.0)
|
11
|
+
|
12
|
+
## 1.6.0
|
13
|
+
|
14
|
+
* Update rubocop-performance from 1.12.0 to [1.13.1](https://github.com/rubocop/rubocop-performance/tag/v1.13.1)
|
15
|
+
* Update rubocop from 1.23.0 to [1.24.1](https://github.com/rubocop/rubocop/tag/v1.24.1)
|
16
|
+
|
17
|
+
## 1.5.0
|
18
|
+
|
19
|
+
* Update rubocop-performance from 1.11.5 to [1.12.0](https://github.com/rubocop/rubocop-performance/tag/v1.12.0)
|
20
|
+
* Update rubocop from 1.22.3 to [1.23.0](https://github.com/rubocop/rubocop/tag/v1.23.0)
|
7
21
|
|
8
22
|
## 1.4.0
|
9
23
|
|
10
24
|
* Update rubocop from 1.19.1 to [1.22.3](https://github.com/rubocop-hq/rubocop/releases/tag/v1.22.3)
|
25
|
+
* Remove [`Style/NegatedIf`](https://github.com/TODO)
|
11
26
|
|
12
27
|
## 1.3.0
|
13
28
|
|
data/Gemfile.lock
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
standard (1.
|
5
|
-
rubocop (= 1.
|
6
|
-
rubocop-performance (= 1.
|
4
|
+
standard (1.7.1)
|
5
|
+
rubocop (= 1.25.1)
|
6
|
+
rubocop-performance (= 1.13.2)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
@@ -13,29 +13,29 @@ GEM
|
|
13
13
|
docile (1.4.0)
|
14
14
|
gimme (0.5.0)
|
15
15
|
method_source (1.0.0)
|
16
|
-
minitest (5.
|
16
|
+
minitest (5.15.0)
|
17
17
|
parallel (1.21.0)
|
18
|
-
parser (3.0.
|
18
|
+
parser (3.1.0.0)
|
19
19
|
ast (~> 2.4.1)
|
20
20
|
pry (0.14.1)
|
21
21
|
coderay (~> 1.1)
|
22
22
|
method_source (~> 1.0)
|
23
|
-
rainbow (3.
|
23
|
+
rainbow (3.1.1)
|
24
24
|
rake (13.0.6)
|
25
|
-
regexp_parser (2.
|
25
|
+
regexp_parser (2.2.0)
|
26
26
|
rexml (3.2.5)
|
27
|
-
rubocop (1.
|
27
|
+
rubocop (1.25.1)
|
28
28
|
parallel (~> 1.10)
|
29
|
-
parser (>= 3.
|
29
|
+
parser (>= 3.1.0.0)
|
30
30
|
rainbow (>= 2.2.2, < 4.0)
|
31
31
|
regexp_parser (>= 1.8, < 3.0)
|
32
32
|
rexml
|
33
|
-
rubocop-ast (>= 1.
|
33
|
+
rubocop-ast (>= 1.15.1, < 2.0)
|
34
34
|
ruby-progressbar (~> 1.7)
|
35
35
|
unicode-display_width (>= 1.4.0, < 3.0)
|
36
|
-
rubocop-ast (1.
|
36
|
+
rubocop-ast (1.15.1)
|
37
37
|
parser (>= 3.0.1.1)
|
38
|
-
rubocop-performance (1.
|
38
|
+
rubocop-performance (1.13.2)
|
39
39
|
rubocop (>= 1.7.0, < 2.0)
|
40
40
|
rubocop-ast (>= 0.4.0)
|
41
41
|
ruby-progressbar (1.11.0)
|
@@ -61,4 +61,4 @@ DEPENDENCIES
|
|
61
61
|
standard!
|
62
62
|
|
63
63
|
BUNDLED WITH
|
64
|
-
2.
|
64
|
+
2.3.4
|
data/README.md
CHANGED
@@ -14,17 +14,16 @@ to save you (and others!) time in the same three ways:
|
|
14
14
|
* **Catch style issues & programmer errors early.** Save precious code review
|
15
15
|
time by eliminating back-and-forth between reviewer & contributor.
|
16
16
|
|
17
|
-
No decisions to make. It just works. Here's a [⚡ lightning talk
|
17
|
+
No decisions to make. It just works. Here's a [⚡ lightning talk
|
18
|
+
⚡](https://www.youtube.com/watch?v=uLyV5hOqGQ8) about it.
|
18
19
|
|
19
|
-
Install by adding it to your Gemfile
|
20
|
+
Install Standard by adding it to your Gemfile and running `bundle install`:
|
20
21
|
|
21
22
|
```ruby
|
22
23
|
gem "standard", group: [:development, :test]
|
23
24
|
```
|
24
25
|
|
25
|
-
|
26
|
-
|
27
|
-
Run Standard from the command line with:
|
26
|
+
You can then run Standard from the command line with:
|
28
27
|
|
29
28
|
```ruby
|
30
29
|
$ bundle exec standardrb
|
@@ -33,6 +32,14 @@ $ bundle exec standardrb
|
|
33
32
|
And if you'd like, Standard can autocorrect your code by tacking on a `--fix`
|
34
33
|
flag.
|
35
34
|
|
35
|
+
If your project uses Rake, adding `require "standard/rake"` adds two tasks:
|
36
|
+
`standard` and `standard:fix`. In most new projects, we tend to add the fixer
|
37
|
+
variant to our default `rake` task after our test command, similar to this:
|
38
|
+
|
39
|
+
```ruby
|
40
|
+
task default: [:test, "standard:fix"]
|
41
|
+
```
|
42
|
+
|
36
43
|
## StandardRB — The Rules
|
37
44
|
|
38
45
|
- **2 spaces** – for indentation
|
@@ -73,8 +80,8 @@ standard: Run `standardrb --fix` to automatically fix some problems.
|
|
73
80
|
/Users/code/cli.rb:31:23: Style/Semicolon: Do not use semicolons to terminate expressions.
|
74
81
|
```
|
75
82
|
|
76
|
-
You can optionally pass in a directory (or directories) using
|
77
|
-
sure to quote paths containing glob patterns so that they are expanded by
|
83
|
+
You can optionally pass in a directory (or directories) using a glob pattern.
|
84
|
+
Be sure to quote paths containing glob patterns so that they are expanded by
|
78
85
|
`standardrb` instead of your shell:
|
79
86
|
|
80
87
|
```bash
|
@@ -84,19 +91,20 @@ $ bundle exec standardrb "lib/**/*.rb" test
|
|
84
91
|
**Note:** by default, StandardRB will look for all `*.rb` files (and some other
|
85
92
|
files typically associated with Ruby like `*.gemspec` and `Gemfile`)
|
86
93
|
|
87
|
-
If you
|
88
|
-
|
94
|
+
If you want to add Standard to an existing project, but don't want to stop all
|
95
|
+
development until you've fixed every violation in every file, you can create a
|
96
|
+
backlog of to-be-converted files by generating a TODO file:
|
89
97
|
|
90
98
|
```bash
|
91
99
|
$ bundle exec standardrb --generate-todo
|
92
100
|
```
|
93
101
|
|
94
|
-
This will create a `.standard_todo.yml` that lists all the files that contain
|
95
|
-
When you run Standard in the future it will ignore these files as if
|
96
|
-
`ignore` section in the `.standard.yml` file.
|
102
|
+
This will create a `.standard_todo.yml` that lists all the files that contain
|
103
|
+
errors. When you run Standard in the future, it will ignore these files as if
|
104
|
+
they were listed under the `ignore` section in the `.standard.yml` file.
|
97
105
|
|
98
|
-
As you refactor your existing project you can remove files from the list.
|
99
|
-
also regenerate the
|
106
|
+
As you refactor your existing project you can remove files from the list. You
|
107
|
+
can also regenerate the TODO file at any time by re-running the above command.
|
100
108
|
|
101
109
|
### Using with Rake
|
102
110
|
|
@@ -151,9 +159,8 @@ ignore: # default: []
|
|
151
159
|
Note: If you're running Standard in a context where your `.standard.yml` file
|
152
160
|
cannot be found by ascending the current working directory (i.e., against a
|
153
161
|
temporary file buffer in your editor), you can specify the config location with
|
154
|
-
`--config path/to/.standard.yml`.
|
155
|
-
|
156
|
-
Similarly, for the `.standard_todo.yml` file, you can specify `--todo path/to/.standard_todo.yml`.
|
162
|
+
`--config path/to/.standard.yml`. (Similarly, for the `.standard_todo.yml` file,
|
163
|
+
you can specify `--todo path/to/.standard_todo.yml`.)
|
157
164
|
|
158
165
|
## What you might do if you're REALLY clever
|
159
166
|
|
@@ -190,20 +197,17 @@ community conventions higher than personal style. This might not make sense for
|
|
190
197
|
place for newbies. Setting up clear, automated contributor expectations makes a
|
191
198
|
project healthier.
|
192
199
|
|
193
|
-
## Usage via
|
200
|
+
## Usage via RuboCop
|
194
201
|
|
195
|
-
If you only want to use
|
196
|
-
|
197
|
-
|
202
|
+
If you only want to use Standard's rules while continuing to use RuboCop's CLI
|
203
|
+
(for example, to continue using your favorite IDE/tooling/workflow with RuboCop
|
204
|
+
support), you can configure this in your `.rubocop.yml`:
|
198
205
|
|
199
206
|
```yaml
|
200
207
|
require: standard
|
201
208
|
|
202
209
|
inherit_gem:
|
203
210
|
standard: config/base.yml
|
204
|
-
|
205
|
-
AllCops:
|
206
|
-
DisabledByDefault: true
|
207
211
|
```
|
208
212
|
|
209
213
|
## Who uses Ruby Standard Style?
|
@@ -213,27 +217,27 @@ familiar](https://github.com/standard/standard#who-uses-javascript-standard-styl
|
|
213
217
|
if you've used StandardJS.)
|
214
218
|
|
215
219
|
* [Test Double](https://testdouble.com/agency)
|
220
|
+
* [Amazon Web Services](https://aws.amazon.com/)
|
221
|
+
* [Babylist](https://www.babylist.com/)
|
222
|
+
* [Brand New Box](https://brandnewbox.com)
|
223
|
+
* [Brave Software](https://github.com/brave-intl/publishers)
|
216
224
|
* [Collective Idea](https://collectiveidea.com/)
|
217
225
|
* [Culture Foundry](https://www.culturefoundry.com/)
|
226
|
+
* [Envoy](https://www.envoy.com)
|
218
227
|
* [Evil Martians](https://evilmartians.com)
|
219
|
-
* [Rebase Interactive](https://www.rebaseinteractive.com/)
|
220
228
|
* [Hashrocket](https://hashrocket.com)
|
221
|
-
* [Brand New Box](https://brandnewbox.com)
|
222
|
-
* [Monterail](https://www.monterail.com)
|
223
|
-
* [Level UP Solutions](https://levups.com)
|
224
229
|
* [Honeybadger](https://www.honeybadger.io)
|
225
|
-
* [Amazon Web Services](https://aws.amazon.com/)
|
226
|
-
* [Envoy](https://www.envoy.com)
|
227
|
-
* [myRent](https://www.myrent.co.nz)
|
228
|
-
* [Renuo](https://www.renuo.ch/)
|
229
230
|
* [JetThoughts](https://www.jetthoughts.com/)
|
231
|
+
* [Level UP Solutions](https://levups.com)
|
232
|
+
* [Monterail](https://www.monterail.com)
|
233
|
+
* [myRent](https://www.myrent.co.nz)
|
230
234
|
* [Oyster](https://www.oysterhr.com/)
|
235
|
+
* [Planet Argon](https://www.planetargon.com/)
|
231
236
|
* [Podia](https://www.podia.com/)
|
237
|
+
* [Rebase Interactive](https://www.rebaseinteractive.com/)
|
238
|
+
* [Renuo](https://www.renuo.ch/)
|
232
239
|
* [RubyCI](https://ruby.ci)
|
233
240
|
* [thoughtbot](https://thoughtbot.com/)
|
234
|
-
* [Planet Argon](https://www.planetargon.com/)
|
235
|
-
* [Brave Software](https://github.com/brave-intl/publishers)
|
236
|
-
* And that's about it so far!
|
237
241
|
|
238
242
|
If your team starts using Standard, [send a pull
|
239
243
|
request](https://github.com/testdouble/standard/edit/main/README.md) to let us
|
@@ -431,15 +435,50 @@ feedback loop. Some editors support asynchronously running linters.
|
|
431
435
|
- [vim (via ALE)](https://github.com/testdouble/standard/wiki/IDE:-vim)
|
432
436
|
- [VS Code](https://github.com/testdouble/standard/wiki/IDE:-vscode)
|
433
437
|
|
434
|
-
##
|
435
|
-
|
436
|
-
|
438
|
+
## Why aren't `frozen_string_literal: true` magic comments enforced?
|
439
|
+
|
440
|
+
Standard does not take a stance on whether you should plaster a
|
441
|
+
[frozen_string_literal magic
|
442
|
+
comment](https://docs.ruby-lang.org/en/3.0/doc/syntax/comments_rdoc.html#label-Magic+Comments)
|
443
|
+
directive at the top of every file. Enforcing use of the comment became popular
|
444
|
+
when it was believed that string literals would be frozen by default in a future
|
445
|
+
version of Ruby, but [according to
|
446
|
+
Matz](https://bugs.ruby-lang.org/issues/11473#note-53) there are no (longer any)
|
447
|
+
such plans.
|
448
|
+
|
449
|
+
Aside from one's personal opinion on the degree to which the comment is an
|
450
|
+
eyesore, the decision to include the magic comment at the top of every file
|
451
|
+
listing ought to be made based on the performance characteristics of each
|
452
|
+
project (e.g. whether it defines a significant number of string literals,
|
453
|
+
whether the commensurate memory usage is a material constraint, whether the code
|
454
|
+
is run as a one-off command or a long-lived server application). These tend to
|
455
|
+
indicate whether the magic comment might lead to meaningful reductions in memory
|
456
|
+
usage.
|
457
|
+
|
458
|
+
Because Standard is intended to be used as a default for every kind of Ruby
|
459
|
+
file—from shell scripts to Rails apps—it wouldn't be appropriate for Standard to
|
460
|
+
either enforce or preclude the magic comment. Instead, you might consider
|
461
|
+
either:
|
462
|
+
|
463
|
+
* Measuring memory performance by enabling frozen string literals as
|
464
|
+
the default at runtime (with `RUBYOPT=--enable-frozen-string-literal`)
|
465
|
+
* Introducing the
|
466
|
+
[magic_frozen_string_literal](https://github.com/Invoca/magic_frozen_string_literal)
|
467
|
+
gem to your build, which will automatically ensure that the comment is
|
468
|
+
prepended for every applicable file in your project
|
469
|
+
|
470
|
+
## How do I use Standard with RuboCop extensions?
|
471
|
+
|
472
|
+
This is not officially supported by Standard. However, Evil Martians wrote up [a
|
473
|
+
regularly updated
|
474
|
+
guide](https://evilmartians.com/chronicles/rubocoping-with-legacy-bring-your-ruby-code-up-to-standard)
|
475
|
+
on how to do so.
|
437
476
|
|
438
477
|
## Does Standard work with [Insert other tool name here]?
|
439
478
|
|
440
|
-
Maybe! Start by searching the repository to see if there's an existing issue
|
441
|
-
the tool you're interested in. That aside, here are other known
|
442
|
-
from editor plugins:
|
479
|
+
Maybe! Start by searching the repository to see if there's an existing issue
|
480
|
+
open for the tool you're interested in. That aside, here are other known
|
481
|
+
integrations aside from editor plugins:
|
443
482
|
|
444
483
|
* [Code Climate](https://github.com/testdouble/standard/wiki/CI:-Code-Climate)
|
445
484
|
* [Pronto](https://github.com/julianrubisch/pronto-standardrb)
|
data/config/base.yml
CHANGED
@@ -49,6 +49,9 @@ Gemspec/RequiredRubyVersion:
|
|
49
49
|
Gemspec/RubyVersionGlobalsUsage:
|
50
50
|
Enabled: false
|
51
51
|
|
52
|
+
Gemspec/RequireMFA:
|
53
|
+
Enabled: false
|
54
|
+
|
52
55
|
Layout/AccessModifierIndentation:
|
53
56
|
Enabled: true
|
54
57
|
EnforcedStyle: indent
|
@@ -798,11 +801,14 @@ Lint/Void:
|
|
798
801
|
CheckForMethodsWithNoSideEffects: false
|
799
802
|
|
800
803
|
Lint/IncompatibleIoSelectWithFiberScheduler:
|
801
|
-
Enabled:
|
804
|
+
Enabled: true
|
802
805
|
|
803
806
|
Lint/RequireRelativeSelfPath:
|
804
807
|
Enabled: true
|
805
808
|
|
809
|
+
Lint/UselessRuby2Keywords:
|
810
|
+
Enabled: true
|
811
|
+
|
806
812
|
Metrics/AbcSize:
|
807
813
|
Enabled: false
|
808
814
|
|
@@ -890,6 +896,9 @@ Naming/VariableName:
|
|
890
896
|
Naming/VariableNumber:
|
891
897
|
Enabled: false
|
892
898
|
|
899
|
+
Naming/BlockForwarding:
|
900
|
+
Enabled: false
|
901
|
+
|
893
902
|
Performance/AncestorsInclude:
|
894
903
|
Enabled: false
|
895
904
|
|
@@ -1036,6 +1045,12 @@ Performance/UnfreezeString:
|
|
1036
1045
|
Performance/UriDefaultParser:
|
1037
1046
|
Enabled: true
|
1038
1047
|
|
1048
|
+
Performance/ConcurrentMonotonicTime:
|
1049
|
+
Enabled: true
|
1050
|
+
|
1051
|
+
Performance/StringIdentifierArgument:
|
1052
|
+
Enabled: true
|
1053
|
+
|
1039
1054
|
Security/Eval:
|
1040
1055
|
Enabled: true
|
1041
1056
|
|
@@ -1298,6 +1313,7 @@ Style/HashLikeCase:
|
|
1298
1313
|
Style/HashSyntax:
|
1299
1314
|
Enabled: true
|
1300
1315
|
EnforcedStyle: ruby19_no_mixed_keys
|
1316
|
+
EnforcedShorthandSyntax: either
|
1301
1317
|
|
1302
1318
|
Style/HashTransformKeys:
|
1303
1319
|
Enabled: false
|
@@ -1811,3 +1827,15 @@ Style/NumberedParametersLimit:
|
|
1811
1827
|
|
1812
1828
|
Style/SelectByRegexp:
|
1813
1829
|
Enabled: false
|
1830
|
+
|
1831
|
+
Style/OpenStructUse:
|
1832
|
+
Enabled: false
|
1833
|
+
|
1834
|
+
Style/MapToHash:
|
1835
|
+
Enabled: false
|
1836
|
+
|
1837
|
+
Style/FileWrite:
|
1838
|
+
Enabled: true
|
1839
|
+
|
1840
|
+
Style/FileRead:
|
1841
|
+
Enabled: true
|
data/config/ruby-1.8.yml
CHANGED
data/config/ruby-2.2.yml
CHANGED
data/config/ruby-3.0.yml
ADDED
@@ -4,7 +4,7 @@ class Standard::CreatesConfigStore
|
|
4
4
|
class AssignsRubocopYaml
|
5
5
|
def call(config_store, standard_config)
|
6
6
|
config_store.options_config = rubocop_yaml_path(standard_config[:ruby_version])
|
7
|
-
config_store.instance_variable_get(
|
7
|
+
config_store.instance_variable_get(:@options_config)
|
8
8
|
end
|
9
9
|
|
10
10
|
private
|
data/lib/standard/version.rb
CHANGED
data/standard.gemspec
CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
|
|
7
7
|
spec.version = Standard::VERSION
|
8
8
|
spec.authors = ["Justin Searls"]
|
9
9
|
spec.email = ["searls@gmail.com"]
|
10
|
-
spec.required_ruby_version = ">= 2.
|
10
|
+
spec.required_ruby_version = ">= 2.6.0"
|
11
11
|
|
12
12
|
spec.summary = "Ruby Style Guide, with linter & automatic code fixer"
|
13
13
|
spec.homepage = "https://github.com/testdouble/standard"
|
@@ -19,6 +19,6 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
20
20
|
spec.require_paths = ["lib"]
|
21
21
|
|
22
|
-
spec.add_dependency "rubocop", "1.
|
23
|
-
spec.add_dependency "rubocop-performance", "1.
|
22
|
+
spec.add_dependency "rubocop", "1.25.1"
|
23
|
+
spec.add_dependency "rubocop-performance", "1.13.2"
|
24
24
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: standard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Searls
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
19
|
+
version: 1.25.1
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.
|
26
|
+
version: 1.25.1
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rubocop-performance
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.
|
33
|
+
version: 1.13.2
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 1.
|
40
|
+
version: 1.13.2
|
41
41
|
description:
|
42
42
|
email:
|
43
43
|
- searls@gmail.com
|
@@ -46,7 +46,9 @@ executables:
|
|
46
46
|
extensions: []
|
47
47
|
extra_rdoc_files: []
|
48
48
|
files:
|
49
|
+
- ".github/dependabot.yml"
|
49
50
|
- ".github/workflows/test.yml"
|
51
|
+
- ".github/workflows/update.yml"
|
50
52
|
- ".gitignore"
|
51
53
|
- ".standard.yml"
|
52
54
|
- CHANGELOG.md
|
@@ -66,6 +68,7 @@ files:
|
|
66
68
|
- config/ruby-2.5.yml
|
67
69
|
- config/ruby-2.6.yml
|
68
70
|
- config/ruby-2.7.yml
|
71
|
+
- config/ruby-3.0.yml
|
69
72
|
- docs/RELEASE.md
|
70
73
|
- exe/standardrb
|
71
74
|
- lib/standard.rb
|
@@ -103,14 +106,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
103
106
|
requirements:
|
104
107
|
- - ">="
|
105
108
|
- !ruby/object:Gem::Version
|
106
|
-
version: 2.
|
109
|
+
version: 2.6.0
|
107
110
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
108
111
|
requirements:
|
109
112
|
- - ">="
|
110
113
|
- !ruby/object:Gem::Version
|
111
114
|
version: '0'
|
112
115
|
requirements: []
|
113
|
-
rubygems_version: 3.2.
|
116
|
+
rubygems_version: 3.2.32
|
114
117
|
signing_key:
|
115
118
|
specification_version: 4
|
116
119
|
summary: Ruby Style Guide, with linter & automatic code fixer
|