rubocop-yard 0.9.2 → 0.9.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -0
- data/README.md +1 -1
- data/lib/rubocop/cop/yard/helper.rb +3 -1
- data/lib/rubocop/cop/yard/mismatch_name.rb +1 -1
- data/lib/rubocop/yard/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: 6ea212d5b8a01f36b28635f8959436cc74fc9946a31cda2a9c0a8657416d0e40
|
4
|
+
data.tar.gz: cc737883475574dde1ac09c73236b3809f0ad4bc2cc3cf23c48fc69ba2af195a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4ebb19d49340e6404b87dc1348ea96dedbece58551be6fac937ec74877c0724fc8b8ae28bf552090c38adc56006c69d1f6be7eefd93cc00eb0d0685982cb9d0
|
7
|
+
data.tar.gz: 12ded42ee94f5dbcb2f81338fc4b20ce7fdb4f822c59c2f77e175091fde81017ebca2db425da42b792e332d49eb18826db6a52b8a293722f6ced2658c9455776
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -136,7 +136,7 @@ require: rubocop-yard
|
|
136
136
|
|
137
137
|
## Development
|
138
138
|
|
139
|
-
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
139
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bundle exec rake` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
140
140
|
|
141
141
|
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 the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
142
142
|
|
@@ -81,7 +81,9 @@ module RuboCop
|
|
81
81
|
minimum_space = comment_texts.map { |t| t.index(/[^\s]/) }.compact.min
|
82
82
|
yard_docstring = comment_texts.map { |t| t[minimum_space..-1] }.join("\n")
|
83
83
|
begin
|
84
|
-
::YARD::
|
84
|
+
::YARD::Logger.instance.enter_level(::YARD::Logger::ERROR) do
|
85
|
+
::YARD::DocstringParser.new.parse(yard_docstring)
|
86
|
+
end
|
85
87
|
rescue
|
86
88
|
nil
|
87
89
|
end
|
@@ -67,7 +67,7 @@ module RuboCop
|
|
67
67
|
|
68
68
|
# Documentation only or just `@return` is a common form of documentation.
|
69
69
|
# The subsequent features will be limited to cases where both `@param` and `@option` are present.
|
70
|
-
unless docstring.tags.find { |tag| (tag.tag_name == 'param' && !tag.instance_of?(::YARD::Tags::RefTagList)) || tag.tag_name == 'option' }
|
70
|
+
unless docstring.tags.find { |tag| (tag.tag_name == 'param' && !(tag.instance_of?(::YARD::Tags::RefTagList) && tag.name.nil?)) || tag.tag_name == 'option' }
|
71
71
|
return false
|
72
72
|
end
|
73
73
|
node.arguments.each do |argument|
|
data/lib/rubocop/yard/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-yard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ksss
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -87,7 +87,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
87
|
- !ruby/object:Gem::Version
|
88
88
|
version: '0'
|
89
89
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
90
|
+
rubygems_version: 3.5.3
|
91
91
|
signing_key:
|
92
92
|
specification_version: 4
|
93
93
|
summary: Check yardoc format.
|