rubocop-oneoff_codemod 0.0.2 → 0.0.4
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/README.md +2 -2
- data/config/default.yml +1 -0
- data/lib/rubocop/oneoff_codemod/version.rb +2 -2
- data/sig/rubocop/oneoff_codemod.rbs +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c69e11eb83dcf36feec593f77035bd1bdf3bfe9c3b59e56062654ee4dfb219f9
|
4
|
+
data.tar.gz: e3d18f33723b0063e80000e83451ef3e0de9eb6a22654d116238d2d64aad96f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8cbe64d5d41996e8ac63e63b6b4e5fbb646481861da5fc954ba6e2c8167b6ac9975c92b97b1ead00428676d92d046dad2433238b20961f7db9cd6c5e9459377
|
7
|
+
data.tar.gz: a7139b363ba718b531c86d2fcd1df9ef7201c9f33cee57108d0c0b2e3e759c5b52771cfdf65207da89f081a13530e87ee6d41fe21bba93a9a55fd3614bd45252
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# RuboCop::OneoffCodemod
|
2
2
|
|
3
3
|
A RuboCop plugin implementing comment-as-command for one-off codemod, inspired by eslint-plugin-command.
|
4
4
|
|
@@ -32,4 +32,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
32
32
|
|
33
33
|
## Code of Conduct
|
34
34
|
|
35
|
-
Everyone interacting in the
|
35
|
+
Everyone interacting in the RuboCop::OneoffCodemod project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/rubocop-oneoff_codemod/blob/master/CODE_OF_CONDUCT.md).
|
data/config/default.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
# It's still empty for now
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-oneoff_codemod
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Koji NAKAMURA
|
@@ -58,6 +58,7 @@ files:
|
|
58
58
|
- LICENSE.txt
|
59
59
|
- README.md
|
60
60
|
- Rakefile
|
61
|
+
- config/default.yml
|
61
62
|
- lib/rubocop/oneoff_codemod.rb
|
62
63
|
- lib/rubocop/oneoff_codemod/cops/keep_unique.rb
|
63
64
|
- lib/rubocop/oneoff_codemod/plugin.rb
|