rubocop_todo_corrector 0.1.0

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.
metadata ADDED
@@ -0,0 +1,119 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubocop_todo_corrector
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Ryo Nakamura
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2022-05-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: thor
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: yard
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description:
56
+ email:
57
+ - r7kamura@gmail.com
58
+ executables:
59
+ - rubocop_todo_corrector
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".rspec"
64
+ - ".rubocop.yml"
65
+ - CHANGELOG.md
66
+ - CODE_OF_CONDUCT.md
67
+ - Gemfile
68
+ - Gemfile.lock
69
+ - LICENSE.txt
70
+ - README.md
71
+ - Rakefile
72
+ - exe/rubocop_todo_corrector
73
+ - lib/rubocop_todo_corrector.rb
74
+ - lib/rubocop_todo_corrector/bundle_installer.rb
75
+ - lib/rubocop_todo_corrector/cli.rb
76
+ - lib/rubocop_todo_corrector/commands.rb
77
+ - lib/rubocop_todo_corrector/commands/bundle.rb
78
+ - lib/rubocop_todo_corrector/commands/describe.rb
79
+ - lib/rubocop_todo_corrector/commands/generate.rb
80
+ - lib/rubocop_todo_corrector/commands/pick.rb
81
+ - lib/rubocop_todo_corrector/commands/remove.rb
82
+ - lib/rubocop_todo_corrector/cop_document_parser.rb
83
+ - lib/rubocop_todo_corrector/cop_source_detector.rb
84
+ - lib/rubocop_todo_corrector/description_renderer.rb
85
+ - lib/rubocop_todo_corrector/gem_names_detector.rb
86
+ - lib/rubocop_todo_corrector/gem_version_detector.rb
87
+ - lib/rubocop_todo_corrector/rubocop_todo_parser.rb
88
+ - lib/rubocop_todo_corrector/rubocop_todo_section_parser.rb
89
+ - lib/rubocop_todo_corrector/version.rb
90
+ - rubocop_todo_corrector.gemspec
91
+ - templates/description.md.erb
92
+ homepage: https://github.com/r7kamura/rubocop_todo_corrector
93
+ licenses:
94
+ - MIT
95
+ metadata:
96
+ homepage_uri: https://github.com/r7kamura/rubocop_todo_corrector
97
+ source_code_uri: https://github.com/r7kamura/rubocop_todo_corrector
98
+ changelog_uri: https://github.com/r7kamura/rubocop_todo_corrector/blob/main/CHANGELOG.md
99
+ rubygems_mfa_required: 'true'
100
+ post_install_message:
101
+ rdoc_options: []
102
+ require_paths:
103
+ - lib
104
+ required_ruby_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ version: '3.0'
109
+ required_rubygems_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ requirements: []
115
+ rubygems_version: 3.3.7
116
+ signing_key:
117
+ specification_version: 4
118
+ summary: Auto-correct offenses defined in .rubocop_todo.yml.
119
+ test_files: []