rubocop-extension-generator 0.2.1 → 0.2.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/CHANGELOG.md +4 -0
- data/Gemfile +1 -1
- data/README.md +4 -0
- data/lib/rubocop/extension/generator/generator.rb +2 -0
- data/lib/rubocop/extension/generator/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 02d60bc8930a959e217cd3cd4e52b9ed878604ada711a9dbf446b7808a9eda64
|
|
4
|
+
data.tar.gz: 20954cca8f4b43194d7f4b2d792db63487fcfb7c918803383e36c059bd64d416
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c5f3866dd59d11f94aa389a914cc7093cbbf0b0052e1f917685596c98de5677d7b0207a4d34007b399391348c14b3bcdeebf85538fda8bb5dcf256cdcf8752f
|
|
7
|
+
data.tar.gz: 7cbfff705bb6d5e33727e4e1330049adf6028fe5951ec5e269e0d72a28491d4f88fcf1a1c917adeae8abdf18ff8790c1414258d1523acf7f638fb20db0143129
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# master (unreleased)
|
|
2
2
|
|
|
3
|
+
# v0.2.2
|
|
4
|
+
|
|
5
|
+
* [#5](https://github.com/rubocop-hq/rubocop-extension-generator/pull/5): Add `require: false` to sample code in README
|
|
6
|
+
|
|
3
7
|
# v0.2.1
|
|
4
8
|
|
|
5
9
|
* [#4](https://github.com/rubocop-hq/rubocop-extension-generator/pull/4): Exclude main lib file from Naming/FileName cop
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -60,6 +60,10 @@ After checking out the repo, run `bin/setup` to install dependencies. You can al
|
|
|
60
60
|
|
|
61
61
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
62
62
|
|
|
63
|
+
### Testing
|
|
64
|
+
|
|
65
|
+
You can execute a smoke test with `ruby smoke/smoke.rb`. Check it is success before open a pull request.
|
|
66
|
+
|
|
63
67
|
## Contributing
|
|
64
68
|
|
|
65
69
|
Bug reports and pull requests are welcome on GitHub at https://github.com/rubocop-hq/rubocop-extension-generator.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-extension-generator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Masataka Pocke Kuwabara
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-01-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -83,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
83
83
|
- !ruby/object:Gem::Version
|
|
84
84
|
version: '0'
|
|
85
85
|
requirements: []
|
|
86
|
-
rubygems_version: 3.
|
|
86
|
+
rubygems_version: 3.1.2
|
|
87
87
|
signing_key:
|
|
88
88
|
specification_version: 4
|
|
89
89
|
summary: A generator of RuboCop's custom cops gem
|