custom_cops_generator 0.1.2 → 0.1.3

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: e3c5ba5e401456f6e6da06b51c458ec5a016e99d83ba9d2faf989b06fba3d546
4
- data.tar.gz: 07dffec5ad9b34571cb2f604afc437a207202323eee97ee73e3f87cedcdaa167
3
+ metadata.gz: 9e1ab141900260e8364682db8146f54458457ec971afea8cce7f99107f2d259c
4
+ data.tar.gz: 3ea4861ee330898f5ada446cb7045b41290c80bfe0c5d9496c789dcd9140733d
5
5
  SHA512:
6
- metadata.gz: 371d9ab4d526a72420e5f810f74f229039c7527bd04b475802af3b023ec1f620a8531f4ee0cffad6c10702f6d2a6d5d0f76893c63f62b4927f8ccb4fbefcc96d
7
- data.tar.gz: fa55c8113abd1f303aef549935bf6d7d33de95a9dff802935a0e2a35dd84021ec0d792a5826cf481aefdce1bebea1a988a92341a879bfe15b22b42cd6d52e743
6
+ metadata.gz: a98a0d24c8c958690be3dce15b9bda21a7b498212b1e88a9dc4c0dfc059be733f1d80044c69613dab59bb8d57be73212128e2a062f30c7bf368d8bae0f2e46d2
7
+ data.tar.gz: 3f4132276bb319ad9d3826ae9800c072da64fe2d1329dc6ef476833889c3bc9a481c7d9fc2f50773871f06c5ca3d93cb733c08cd8711d02c859a74a00082454e
data/README.md CHANGED
@@ -32,7 +32,7 @@ Creating gem 'rubocop-foobar'...
32
32
  create rubocop-foobar/bin/console
33
33
  create rubocop-foobar/bin/setup
34
34
  create rubocop-foobar/.gitignore
35
- Initializing git repo in /tmp/tmp.WB5WF1deee/rubocop-foobar
35
+ Initializing git repo in /tmp/tmp.Gu7G94wX00/rubocop-foobar
36
36
  Gem 'rubocop-foobar' was successfully created. For more information on making a RubyGem visit https://bundler.io/guides/creating_gem.html
37
37
  create rubocop-foobar/lib/rubocop-foobar.rb
38
38
  create rubocop-foobar/lib/rubocop/foobar/inject.rb
@@ -40,6 +40,10 @@ create rubocop-foobar/lib/rubocop/cop/foobar_cops.rb
40
40
  create rubocop-foobar/config/default.yml
41
41
  create rubocop-foobar/spec/spec_helper.rb
42
42
  create rubocop-foobar/.rspec
43
+ update lib/rubocop/foobar.rb
44
+ update lib/rubocop/foobar.rb
45
+ update lib/rubocop/foobar/version.rb
46
+ update rubocop-foobar.gemspec
43
47
  update rubocop-foobar.gemspec
44
48
  update Rakefile
45
49
  update Gemfile
@@ -6,8 +6,10 @@ Gem::Specification.new do |spec|
6
6
  spec.authors = ["Masataka Pocke Kuwabara"]
7
7
  spec.email = ["kuwabara@pocke.me"]
8
8
 
9
- spec.summary = %q{A generator of RuboCop's custom cops gem}
10
- spec.description = %q{A generator of RuboCop's custom cops gem}
9
+ # spec.summary = %q{A generator of RuboCop's custom cops gem}
10
+ # spec.description = %q{A generator of RuboCop's custom cops gem}
11
+ spec.summary = %q{DEPRECATED: Use rubocop-extension-generator gem}
12
+ spec.description = %q{DEPRECATED: Use rubocop-extension-generator gem}
11
13
  spec.homepage = "https://github.com/pocke/custom_cops_generator"
12
14
  spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
13
15
  spec.licenses = ['MIT']
@@ -29,4 +31,9 @@ Gem::Specification.new do |spec|
29
31
 
30
32
  spec.add_runtime_dependency 'bundler'
31
33
  spec.add_runtime_dependency 'activesupport'
34
+
35
+ spec.post_install_message = <<~MESSAGE
36
+ custom_cops_generator gem has been renamed rubocop-extension-generator.
37
+ Please use rubocop-extension-generator instead of this gem.
38
+ MESSAGE
32
39
  end
@@ -1,3 +1,3 @@
1
1
  module CustomCopsGenerator
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: custom_cops_generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
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: 2019-09-03 00:00:00.000000000 Z
11
+ date: 2019-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -38,7 +38,7 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- description: A generator of RuboCop's custom cops gem
41
+ description: 'DEPRECATED: Use rubocop-extension-generator gem'
42
42
  email:
43
43
  - kuwabara@pocke.me
44
44
  executables:
@@ -66,7 +66,9 @@ metadata:
66
66
  allowed_push_host: https://rubygems.org
67
67
  homepage_uri: https://github.com/pocke/custom_cops_generator
68
68
  source_code_uri: https://github.com/pocke/custom_cops_generator
69
- post_install_message:
69
+ post_install_message: |
70
+ custom_cops_generator gem has been renamed rubocop-extension-generator.
71
+ Please use rubocop-extension-generator instead of this gem.
70
72
  rdoc_options: []
71
73
  require_paths:
72
74
  - lib
@@ -84,5 +86,5 @@ requirements: []
84
86
  rubygems_version: 3.0.3
85
87
  signing_key:
86
88
  specification_version: 4
87
- summary: A generator of RuboCop's custom cops gem
89
+ summary: 'DEPRECATED: Use rubocop-extension-generator gem'
88
90
  test_files: []