rubocop-oneoff_codemod 0.0.3 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 81bf98f0675cd046786de15ab60f0c0e9d9c9171dadca788e863e366b58c4327
4
- data.tar.gz: b59a62f0da18ef1bd0d8caa57d9440fb0eadc7d44d5063ccea33ecfd9b31100e
3
+ metadata.gz: c69e11eb83dcf36feec593f77035bd1bdf3bfe9c3b59e56062654ee4dfb219f9
4
+ data.tar.gz: e3d18f33723b0063e80000e83451ef3e0de9eb6a22654d116238d2d64aad96f9
5
5
  SHA512:
6
- metadata.gz: b1dd632033a08bc9e9fef6b3f8d8b70c2df1f97ecae979b2f2518c5a7407426ab611869ff6532cd4fbf5a61a0ca0aca710f2f7ae48f4f7376fbc2361e410312e
7
- data.tar.gz: 2c4b31f59f1f2d92d5800bd6577f95dd9e1c0e657c60fd9df242c94128541140629009b01a37f7314e83c7fc8536cd04d646aa6e9ab76b355c209e47d5697b9d
6
+ metadata.gz: b8cbe64d5d41996e8ac63e63b6b4e5fbb646481861da5fc954ba6e2c8167b6ac9975c92b97b1ead00428676d92d046dad2433238b20961f7db9cd6c5e9459377
7
+ data.tar.gz: a7139b363ba718b531c86d2fcd1df9ef7201c9f33cee57108d0c0b2e3e759c5b52771cfdf65207da89f081a13530e87ee6d41fe21bba93a9a55fd3614bd45252
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Rubocop::OneoffCodemod
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 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).
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).
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rubocop
3
+ module RuboCop
4
4
  module OneoffCodemod
5
- VERSION = "0.0.3"
5
+ VERSION = "0.0.4"
6
6
  end
7
7
  end
@@ -1,4 +1,4 @@
1
- module Rubocop
1
+ module RuboCop
2
2
  module OneoffCodemod
3
3
  VERSION: String
4
4
  # See the writing guide of rbs: https://github.com/ruby/rbs#guides
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.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Koji NAKAMURA