yard 0.9.23 → 0.9.27
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of yard might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.dockerignore +0 -0
- data/.gitattributes +4 -0
- data/.github/FUNDING.yml +3 -0
- data/.github/ISSUE_TEMPLATE.md +6 -6
- data/.github/PULL_REQUEST_TEMPLATE.md +5 -5
- data/.github/workflows/ci.yml +30 -0
- data/.github/workflows/gem.yml +19 -0
- data/.gitignore +0 -0
- data/.rspec +0 -0
- data/.rubocop.yml +37 -24
- data/.yardopts +0 -0
- data/.yardopts_guide +0 -0
- data/.yardopts_i18n +0 -0
- data/CHANGELOG.md +50 -4
- data/CONTRIBUTING.md +2 -2
- data/Gemfile +5 -3
- data/README.md +97 -102
- data/Rakefile +2 -3
- data/lib/yard/cli/diff.rb +4 -1
- data/lib/yard/cli/server.rb +22 -13
- data/lib/yard/cli/stats.rb +2 -0
- data/lib/yard/cli/yardoc.rb +2 -1
- data/lib/yard/code_objects/method_object.rb +1 -1
- data/lib/yard/code_objects/namespace_mapper.rb +30 -3
- data/lib/yard/code_objects/proxy.rb +2 -1
- data/lib/yard/globals.rb +1 -1
- data/lib/yard/handlers/c/base.rb +35 -0
- data/lib/yard/handlers/ruby/method_handler.rb +1 -1
- data/lib/yard/handlers/ruby/mixin_handler.rb +7 -2
- data/lib/yard/handlers/ruby/module_function_handler.rb +15 -3
- data/lib/yard/parser/ruby/ast_node.rb +2 -2
- data/lib/yard/parser/ruby/ruby_parser.rb +7 -5
- data/lib/yard/parser/ruby/token_resolver.rb +3 -1
- data/lib/yard/parser/source_parser.rb +1 -1
- data/lib/yard/registry_resolver.rb +10 -24
- data/lib/yard/registry_store.rb +1 -1
- data/lib/yard/serializers/yardoc_serializer.rb +1 -1
- data/lib/yard/server/commands/base.rb +2 -2
- data/lib/yard/server/commands/library_command.rb +1 -1
- data/lib/yard/tags/directives.rb +10 -1
- data/lib/yard/templates/helpers/html_helper.rb +15 -5
- data/lib/yard/templates/helpers/markup/rdoc_markup.rb +5 -4
- data/lib/yard/templates/helpers/markup_helper.rb +2 -1
- data/lib/yard/templates/section.rb +1 -3
- data/lib/yard/version.rb +1 -1
- data/lib/yard.rb +3 -0
- data/samus.json +15 -46
- data/tasks/prepare_tag.rake +45 -0
- data/tasks/update_error_map.rake +53 -0
- data/templates/default/fulldoc/html/css/style.css +1 -0
- data/yard.gemspec +3 -2
- metadata +23 -207
- data/.travis.yml +0 -52
- data/spec/cli/command_parser_spec.rb +0 -43
- data/spec/cli/command_spec.rb +0 -36
- data/spec/cli/config_spec.rb +0 -148
- data/spec/cli/diff_spec.rb +0 -254
- data/spec/cli/display_spec.rb +0 -30
- data/spec/cli/gems_spec.rb +0 -81
- data/spec/cli/graph_spec.rb +0 -18
- data/spec/cli/help_spec.rb +0 -22
- data/spec/cli/i18n_spec.rb +0 -107
- data/spec/cli/list_spec.rb +0 -8
- data/spec/cli/markup_types_spec.rb +0 -22
- data/spec/cli/server_spec.rb +0 -324
- data/spec/cli/stats_spec.rb +0 -96
- data/spec/cli/yard_on_yard_spec.rb +0 -38
- data/spec/cli/yardoc_spec.rb +0 -896
- data/spec/cli/yri_spec.rb +0 -101
- data/spec/code_objects/base_spec.rb +0 -485
- data/spec/code_objects/class_object_spec.rb +0 -226
- data/spec/code_objects/code_object_list_spec.rb +0 -36
- data/spec/code_objects/constants_spec.rb +0 -116
- data/spec/code_objects/extra_file_object_spec.rb +0 -161
- data/spec/code_objects/macro_object_spec.rb +0 -150
- data/spec/code_objects/method_object_spec.rb +0 -184
- data/spec/code_objects/module_object_spec.rb +0 -142
- data/spec/code_objects/namespace_object_spec.rb +0 -171
- data/spec/code_objects/proxy_spec.rb +0 -147
- data/spec/code_objects/spec_helper.rb +0 -3
- data/spec/config_spec.rb +0 -171
- data/spec/core_ext/array_spec.rb +0 -13
- data/spec/core_ext/file_spec.rb +0 -72
- data/spec/core_ext/hash_spec.rb +0 -14
- data/spec/core_ext/insertion_spec.rb +0 -37
- data/spec/core_ext/module_spec.rb +0 -9
- data/spec/core_ext/string_spec.rb +0 -42
- data/spec/core_ext/symbol_hash_spec.rb +0 -89
- data/spec/docstring_parser_spec.rb +0 -280
- data/spec/docstring_spec.rb +0 -373
- data/spec/handlers/alias_handler_spec.rb +0 -82
- data/spec/handlers/attribute_handler_spec.rb +0 -96
- data/spec/handlers/base_spec.rb +0 -216
- data/spec/handlers/c/alias_handler_spec.rb +0 -34
- data/spec/handlers/c/attribute_handler_spec.rb +0 -41
- data/spec/handlers/c/class_handler_spec.rb +0 -78
- data/spec/handlers/c/constant_handler_spec.rb +0 -71
- data/spec/handlers/c/init_handler_spec.rb +0 -48
- data/spec/handlers/c/method_handler_spec.rb +0 -327
- data/spec/handlers/c/mixin_handler_spec.rb +0 -44
- data/spec/handlers/c/module_handler_spec.rb +0 -71
- data/spec/handlers/c/override_comment_handler_spec.rb +0 -47
- data/spec/handlers/c/path_handler_spec.rb +0 -36
- data/spec/handlers/c/spec_helper.rb +0 -23
- data/spec/handlers/c/struct_handler_spec.rb +0 -16
- data/spec/handlers/class_condition_handler_spec.rb +0 -87
- data/spec/handlers/class_handler_spec.rb +0 -247
- data/spec/handlers/class_method_handler_shared_examples.rb +0 -133
- data/spec/handlers/class_variable_handler_spec.rb +0 -12
- data/spec/handlers/constant_handler_spec.rb +0 -112
- data/spec/handlers/decorator_handler_methods_spec.rb +0 -393
- data/spec/handlers/dsl_handler_spec.rb +0 -226
- data/spec/handlers/examples/alias_handler_001.rb.txt +0 -46
- data/spec/handlers/examples/attribute_handler_001.rb.txt +0 -32
- data/spec/handlers/examples/class_condition_handler_001.rb.txt +0 -69
- data/spec/handlers/examples/class_handler_001.rb.txt +0 -120
- data/spec/handlers/examples/class_variable_handler_001.rb.txt +0 -10
- data/spec/handlers/examples/constant_handler_001.rb.txt +0 -35
- data/spec/handlers/examples/dsl_handler_001.rb.txt +0 -156
- data/spec/handlers/examples/exception_handler_001.rb.txt +0 -59
- data/spec/handlers/examples/extend_handler_001.rb.txt +0 -19
- data/spec/handlers/examples/method_condition_handler_001.rb.txt +0 -10
- data/spec/handlers/examples/method_handler_001.rb.txt +0 -128
- data/spec/handlers/examples/mixin_handler_001.rb.txt +0 -40
- data/spec/handlers/examples/module_handler_001.rb.txt +0 -29
- data/spec/handlers/examples/private_constant_handler_001.rb.txt +0 -8
- data/spec/handlers/examples/process_handler_001.rb.txt +0 -11
- data/spec/handlers/examples/visibility_handler_001.rb.txt +0 -36
- data/spec/handlers/examples/yield_handler_001.rb.txt +0 -54
- data/spec/handlers/exception_handler_spec.rb +0 -49
- data/spec/handlers/extend_handler_spec.rb +0 -28
- data/spec/handlers/legacy_base_spec.rb +0 -128
- data/spec/handlers/method_condition_handler_spec.rb +0 -15
- data/spec/handlers/method_handler_spec.rb +0 -214
- data/spec/handlers/mixin_handler_spec.rb +0 -60
- data/spec/handlers/module_function_handler_spec.rb +0 -106
- data/spec/handlers/module_handler_spec.rb +0 -35
- data/spec/handlers/private_class_method_handler_spec.rb +0 -11
- data/spec/handlers/private_constant_handler_spec.rb +0 -25
- data/spec/handlers/processor_spec.rb +0 -35
- data/spec/handlers/public_class_method_handler_spec.rb +0 -11
- data/spec/handlers/ruby/base_spec.rb +0 -95
- data/spec/handlers/ruby/legacy/base_spec.rb +0 -84
- data/spec/handlers/spec_helper.rb +0 -33
- data/spec/handlers/visibility_handler_spec.rb +0 -44
- data/spec/handlers/yield_handler_spec.rb +0 -52
- data/spec/i18n/locale_spec.rb +0 -81
- data/spec/i18n/message_spec.rb +0 -52
- data/spec/i18n/messages_spec.rb +0 -67
- data/spec/i18n/pot_generator_spec.rb +0 -295
- data/spec/i18n/text_spec.rb +0 -184
- data/spec/logging_spec.rb +0 -44
- data/spec/options_spec.rb +0 -171
- data/spec/parser/base_spec.rb +0 -24
- data/spec/parser/c_parser_spec.rb +0 -236
- data/spec/parser/examples/array.c.txt +0 -6267
- data/spec/parser/examples/example1.rb.txt +0 -8
- data/spec/parser/examples/extrafile.c.txt +0 -8
- data/spec/parser/examples/file.c.txt +0 -28
- data/spec/parser/examples/multifile.c.txt +0 -22
- data/spec/parser/examples/namespace.cpp.txt +0 -68
- data/spec/parser/examples/override.c.txt +0 -424
- data/spec/parser/examples/parse_in_order_001.rb.txt +0 -2
- data/spec/parser/examples/parse_in_order_002.rb.txt +0 -2
- data/spec/parser/examples/tag_handler_001.rb.txt +0 -8
- data/spec/parser/ruby/ast_node_spec.rb +0 -33
- data/spec/parser/ruby/legacy/statement_list_spec.rb +0 -299
- data/spec/parser/ruby/legacy/token_list_spec.rb +0 -79
- data/spec/parser/ruby/ruby_parser_spec.rb +0 -508
- data/spec/parser/ruby/token_resolver_spec.rb +0 -165
- data/spec/parser/source_parser_spec.rb +0 -727
- data/spec/parser/tag_parsing_spec.rb +0 -17
- data/spec/rake/yardoc_task_spec.rb +0 -118
- data/spec/registry_spec.rb +0 -463
- data/spec/registry_store_spec.rb +0 -327
- data/spec/rubygems/doc_manager_spec.rb +0 -112
- data/spec/serializers/data/serialized_yardoc/checksums +0 -1
- data/spec/serializers/data/serialized_yardoc/objects/Foo/bar_i.dat +0 -0
- data/spec/serializers/data/serialized_yardoc/objects/Foo/baz_i.dat +0 -0
- data/spec/serializers/data/serialized_yardoc/objects/Foo.dat +0 -0
- data/spec/serializers/data/serialized_yardoc/objects/root.dat +0 -0
- data/spec/serializers/data/serialized_yardoc/proxy_types +0 -2
- data/spec/serializers/file_system_serializer_spec.rb +0 -145
- data/spec/serializers/spec_helper.rb +0 -2
- data/spec/serializers/yardoc_serializer_spec.rb +0 -78
- data/spec/server/adapter_spec.rb +0 -39
- data/spec/server/commands/base_spec.rb +0 -91
- data/spec/server/commands/library_command_spec.rb +0 -39
- data/spec/server/doc_server_helper_spec.rb +0 -72
- data/spec/server/doc_server_serializer_spec.rb +0 -60
- data/spec/server/rack_adapter_spec.rb +0 -21
- data/spec/server/router_spec.rb +0 -123
- data/spec/server/spec_helper.rb +0 -22
- data/spec/server/static_caching_spec.rb +0 -47
- data/spec/server/webrick_servlet_spec.rb +0 -20
- data/spec/server_spec.rb +0 -19
- data/spec/spec_helper.rb +0 -212
- data/spec/tags/default_factory_spec.rb +0 -168
- data/spec/tags/default_tag_spec.rb +0 -11
- data/spec/tags/directives_spec.rb +0 -463
- data/spec/tags/library_spec.rb +0 -48
- data/spec/tags/overload_tag_spec.rb +0 -53
- data/spec/tags/ref_tag_list_spec.rb +0 -53
- data/spec/tags/types_explainer_spec.rb +0 -203
- data/spec/templates/class_spec.rb +0 -45
- data/spec/templates/constant_spec.rb +0 -41
- data/spec/templates/engine_spec.rb +0 -131
- data/spec/templates/examples/class001.html +0 -308
- data/spec/templates/examples/class001.txt +0 -36
- data/spec/templates/examples/class002.html +0 -39
- data/spec/templates/examples/constant001.txt +0 -25
- data/spec/templates/examples/constant002.txt +0 -7
- data/spec/templates/examples/constant003.txt +0 -11
- data/spec/templates/examples/method001.html +0 -137
- data/spec/templates/examples/method001.txt +0 -35
- data/spec/templates/examples/method002.html +0 -91
- data/spec/templates/examples/method002.txt +0 -20
- data/spec/templates/examples/method003.html +0 -165
- data/spec/templates/examples/method003.txt +0 -45
- data/spec/templates/examples/method004.html +0 -48
- data/spec/templates/examples/method004.txt +0 -10
- data/spec/templates/examples/method005.html +0 -105
- data/spec/templates/examples/method005.txt +0 -33
- data/spec/templates/examples/method006.html +0 -108
- data/spec/templates/examples/method006.txt +0 -20
- data/spec/templates/examples/module001.dot +0 -33
- data/spec/templates/examples/module001.html +0 -833
- data/spec/templates/examples/module001.txt +0 -33
- data/spec/templates/examples/module002.html +0 -341
- data/spec/templates/examples/module003.html +0 -202
- data/spec/templates/examples/module004.html +0 -394
- data/spec/templates/examples/module005.html +0 -82
- data/spec/templates/examples/tag001.txt +0 -82
- data/spec/templates/helpers/base_helper_spec.rb +0 -171
- data/spec/templates/helpers/html_helper_spec.rb +0 -687
- data/spec/templates/helpers/html_syntax_highlight_helper_spec.rb +0 -65
- data/spec/templates/helpers/markup/rdoc_markup_spec.rb +0 -84
- data/spec/templates/helpers/markup_helper_spec.rb +0 -136
- data/spec/templates/helpers/method_helper_spec.rb +0 -107
- data/spec/templates/helpers/module_helper_spec.rb +0 -35
- data/spec/templates/helpers/shared_signature_examples.rb +0 -126
- data/spec/templates/helpers/text_helper_spec.rb +0 -65
- data/spec/templates/markup_processor_integrations/asciidoctor_spec.rb +0 -60
- data/spec/templates/markup_processor_integrations/integration_spec_helper.rb +0 -46
- data/spec/templates/markup_processor_integrations/rdoc_markdown_spec.rb +0 -59
- data/spec/templates/markup_processor_integrations/rdoc_spec.rb +0 -39
- data/spec/templates/markup_processor_integrations/redcarpet_spec.rb +0 -59
- data/spec/templates/markup_processor_integrations/redcloth_spec.rb +0 -48
- data/spec/templates/method_spec.rb +0 -118
- data/spec/templates/module_spec.rb +0 -203
- data/spec/templates/onefile_spec.rb +0 -66
- data/spec/templates/section_spec.rb +0 -144
- data/spec/templates/spec_helper.rb +0 -76
- data/spec/templates/tag_spec.rb +0 -52
- data/spec/templates/template_spec.rb +0 -410
- data/spec/verifier_spec.rb +0 -106
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d0e3a62dcbb66515f56fe9a2cb919aa97881dced6e7cf052a7ce0201ff9222cf
|
4
|
+
data.tar.gz: 06714cb7f3e754d10fb2e784c0a0d49a5fee20aaee75778565daea8b61c453c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a993609ba381fdc0419ac8332605b10a3995ff818626c20e64095f4f845e28297d38a81c890aa95a187ca8fd7d8e7d9f291d7251ac96ba1bee7a5a249f2db3d
|
7
|
+
data.tar.gz: f71cc60bc0fbe36419f8f142e07bbee5fd19b9e539099256bb644f1f61f57e9fa61c96ff95e879d584bdb48b3f988d5e945277acbc6e0f083cf1a6c8584c45df
|
data/.dockerignore
CHANGED
File without changes
|
data/.gitattributes
ADDED
data/.github/FUNDING.yml
ADDED
data/.github/ISSUE_TEMPLATE.md
CHANGED
@@ -22,12 +22,12 @@ visual issues.]
|
|
22
22
|
|
23
23
|
## Environment details:
|
24
24
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
25
|
+
- OS: [Enter operating system / version here]
|
26
|
+
- Ruby version (`ruby -v`): [Enter output of `ruby -v`]
|
27
|
+
- YARD version (`yard -v`): [Enter output of `yard -v`]
|
28
|
+
- Relevant software dependency/versions:
|
29
|
+
- [Any 3rd party libs required to reproduce, omit if none]
|
30
30
|
|
31
31
|
I have read the [Contributing Guide][contrib].
|
32
32
|
|
33
|
-
[contrib]: https://github.com/lsegal/yard/blob/
|
33
|
+
[contrib]: https://github.com/lsegal/yard/blob/main/CONTRIBUTING.md
|
@@ -4,9 +4,9 @@ Describe your pull request and problem statement here.
|
|
4
4
|
|
5
5
|
# Completed Tasks
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
- [ ] I have read the [Contributing Guide][contrib].
|
8
|
+
- [ ] The pull request is complete (implemented / written).
|
9
|
+
- [ ] Git commits have been cleaned up (squash WIP / revert commits).
|
10
|
+
- [ ] I wrote tests and ran `bundle exec rake` locally (if code is attached to PR).
|
11
11
|
|
12
|
-
[contrib]: https://github.com/lsegal/yard/blob/
|
12
|
+
[contrib]: https://github.com/lsegal/yard/blob/main/CONTRIBUTING.md
|
@@ -0,0 +1,30 @@
|
|
1
|
+
name: Unit Tests
|
2
|
+
|
3
|
+
on: [push, pull_request, workflow_dispatch]
|
4
|
+
jobs:
|
5
|
+
build:
|
6
|
+
name: "Ruby: ${{ matrix.ruby }} OS: ${{ matrix.os }}"
|
7
|
+
runs-on: ${{ matrix.os }}
|
8
|
+
strategy:
|
9
|
+
fail-fast: false
|
10
|
+
matrix:
|
11
|
+
os: [ubuntu-20.04, macos-10.15, windows-2019]
|
12
|
+
# 3.0 is interpreted as 3
|
13
|
+
ruby: [2.2, 2.3, 2.4, 2.5, 2.6, 2.7, "3.0"]
|
14
|
+
exclude:
|
15
|
+
- { os: windows-2019 , ruby: 2.2 }
|
16
|
+
- { os: windows-2019 , ruby: 2.3 }
|
17
|
+
steps:
|
18
|
+
- name: Checkout
|
19
|
+
uses: actions/checkout@v2
|
20
|
+
- name: Install Ruby & 'bundle install'
|
21
|
+
uses: ruby/setup-ruby@v1
|
22
|
+
with:
|
23
|
+
ruby-version: ${{ matrix.ruby }}
|
24
|
+
bundler-cache: true
|
25
|
+
- name: Run Test
|
26
|
+
run: |
|
27
|
+
ruby -v
|
28
|
+
bundle exec rake
|
29
|
+
env:
|
30
|
+
CI: true
|
@@ -0,0 +1,19 @@
|
|
1
|
+
name: Release Version
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
tags:
|
6
|
+
- "v*"
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
release_version:
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
steps:
|
12
|
+
- uses: actions/checkout@v2
|
13
|
+
- uses: lsegal/github-release-from-changelog-action@latest
|
14
|
+
env:
|
15
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
16
|
+
- name: Publish RubyGem
|
17
|
+
uses: dawidd6/action-publish-gem@v1
|
18
|
+
with:
|
19
|
+
api_key: ${{secrets.RUBYGEMS_API_KEY}}
|
data/.gitignore
CHANGED
File without changes
|
data/.rspec
CHANGED
File without changes
|
data/.rubocop.yml
CHANGED
@@ -1,13 +1,11 @@
|
|
1
1
|
#inherit_from:
|
2
2
|
# - .rubocop_todo.yml
|
3
3
|
|
4
|
-
AllCops:
|
5
|
-
TargetRubyVersion: 2.4
|
6
|
-
Exclude:
|
7
|
-
- 'vendor/**/*' # need to reset this apparently
|
8
|
-
- 'lib/yard/parser/ruby/legacy/ruby_lex.rb' # old file, don't touch
|
9
4
|
Metrics:
|
10
5
|
Enabled: false
|
6
|
+
Layout/LineLength:
|
7
|
+
AutoCorrect: true
|
8
|
+
Max: 100
|
11
9
|
Style/Semicolon:
|
12
10
|
AllowAsExpressionSeparator: true
|
13
11
|
Style/Documentation:
|
@@ -16,23 +14,21 @@ Style/ClassVars:
|
|
16
14
|
Enabled: false
|
17
15
|
Style/HashSyntax:
|
18
16
|
EnforcedStyle: hash_rockets
|
19
|
-
|
17
|
+
Layout/SpaceInsideHashLiteralBraces:
|
20
18
|
EnforcedStyle: no_space
|
21
|
-
|
19
|
+
Layout/SpaceInsideBlockBraces:
|
22
20
|
SpaceBeforeBlockParameters: false
|
23
|
-
Style/MultilineMethodCallIndentation:
|
24
|
-
EnforcedStyle: indented
|
25
21
|
Style/NumericPredicate: # ruby 1.8/1.9 do not have positive?/negative?
|
26
22
|
EnforcedStyle: comparison
|
27
|
-
|
23
|
+
Layout/MultilineMethodCallIndentation:
|
28
24
|
EnforcedStyle: indented
|
29
|
-
|
25
|
+
Layout/DotPosition:
|
30
26
|
EnforcedStyle: trailing
|
31
27
|
Style/FormatString:
|
32
28
|
EnforcedStyle: percent
|
33
|
-
|
29
|
+
Layout/FirstArrayElementIndentation:
|
34
30
|
EnforcedStyle: consistent
|
35
|
-
|
31
|
+
Layout/FirstHashElementIndentation:
|
36
32
|
EnforcedStyle: consistent
|
37
33
|
|
38
34
|
# Disable these until we know what to do with them
|
@@ -40,29 +36,31 @@ Style/SafeNavigation:
|
|
40
36
|
Enabled: false # not supported in 1.8...2.1
|
41
37
|
Style/GuardClause: # does not provide much value
|
42
38
|
Enabled: false
|
43
|
-
|
39
|
+
Naming/VariableNumber:
|
40
|
+
Enabled: false
|
41
|
+
Naming/AccessorMethodName: # this creates breaking changes in the API
|
44
42
|
Enabled: false
|
45
|
-
|
43
|
+
Naming/PredicateName: # this creates breaking changes in the API
|
46
44
|
Enabled: false
|
47
|
-
Style/
|
45
|
+
Style/MethodMissingSuper: # this doesn't exist in 1.8/1.9
|
48
46
|
Enabled: false
|
49
|
-
Style/
|
47
|
+
Style/MissingRespondToMissing: # this doesn't exist in 1.8/1.9
|
50
48
|
Enabled: false
|
51
49
|
Style/Lambda: # not supported in 1.8
|
52
50
|
Enabled: false
|
53
51
|
Style/EachWithObject: # not supported in 1.8
|
54
52
|
Enabled: false
|
55
|
-
|
53
|
+
Layout/ParameterAlignment: # does not work correctly with subsequent block
|
56
54
|
Enabled: false
|
57
|
-
|
55
|
+
Layout/ArrayAlignment: # does not support indentation
|
58
56
|
Enabled: false
|
59
|
-
|
57
|
+
Layout/HashAlignment: # does not support indentation
|
60
58
|
Enabled: false
|
61
59
|
Style/MultilineTernaryOperator:
|
62
60
|
Enabled: false
|
63
61
|
Style/ClassAndModuleChildren:
|
64
62
|
Enabled: false
|
65
|
-
|
63
|
+
Layout/EmptyLineBetweenDefs:
|
66
64
|
AllowAdjacentOneLineDefs: true
|
67
65
|
Style/SingleLineMethods:
|
68
66
|
Enabled: false
|
@@ -91,9 +89,24 @@ Style/GlobalVars:
|
|
91
89
|
Exclude:
|
92
90
|
- benchmarks/**/*.rb
|
93
91
|
- spec/**/*.rb
|
94
|
-
Lint/
|
92
|
+
Lint/RedundantSplatExpansion:
|
95
93
|
Enabled: false
|
96
|
-
|
94
|
+
Security/Eval:
|
97
95
|
Exclude:
|
98
96
|
- benchmarks/**/*.rb
|
99
|
-
- spec/**/*.rb
|
97
|
+
- spec/**/*.rb
|
98
|
+
|
99
|
+
Layout/SpaceAroundMethodCallOperator:
|
100
|
+
Enabled: false
|
101
|
+
Lint/RaiseException:
|
102
|
+
Enabled: false
|
103
|
+
Lint/StructNewOverride:
|
104
|
+
Enabled: false
|
105
|
+
Style/ExponentialNotation:
|
106
|
+
Enabled: false
|
107
|
+
Style/HashEachMethods:
|
108
|
+
Enabled: false
|
109
|
+
Style/HashTransformKeys:
|
110
|
+
Enabled: false
|
111
|
+
Style/HashTransformValues:
|
112
|
+
Enabled: false
|
data/.yardopts
CHANGED
File without changes
|
data/.yardopts_guide
CHANGED
File without changes
|
data/.yardopts_i18n
CHANGED
File without changes
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,50 @@
|
|
1
|
-
#
|
1
|
+
# main
|
2
|
+
|
3
|
+
# 0.9.27 - November 29th, 2021
|
4
|
+
|
5
|
+
[0.9.27]: https://github.com/lsegal/yard/compare/v0.9.26...v0.9.27
|
6
|
+
|
7
|
+
- Add support for Ruby 3.0 endless method definitions. (#1376, #1381)
|
8
|
+
- Add existence check for README file (#1367)
|
9
|
+
- Support module_function decorator (#1365)
|
10
|
+
- Add CommonMarker markup support (`-m commonmarker`) (#1157, #1388)
|
11
|
+
- Fix nested array parsing (#1389)
|
12
|
+
- Add WEBrick as a runtime dependency for Ruby 3.0 support (#1400)
|
13
|
+
- Support `fail_on_warning` option in `yard stats` command (#1392)
|
14
|
+
- Better integration with Sorbet (#1401)
|
15
|
+
- Handle include mixins on complex paths (#1386)
|
16
|
+
- Fix `@!scope` maintaining state in lone comment blocks (#1411)
|
17
|
+
- Remove support for Travis CI
|
18
|
+
|
19
|
+
# 0.9.26 - December 26th, 2020
|
20
|
+
|
21
|
+
[0.9.26]: https://github.com/lsegal/yard/compare/v0.9.25...v0.9.26
|
22
|
+
|
23
|
+
- Add support for Ruby 3.0 and fix tests
|
24
|
+
- Fix support for `frozen_string_literal: false` magic comments (#1363)
|
25
|
+
|
26
|
+
# 0.9.25 - May 3rd, 2020
|
27
|
+
|
28
|
+
[0.9.25]: https://github.com/lsegal/yard/compare/v0.9.24...v0.9.25
|
29
|
+
|
30
|
+
- Fix parsing issue with conditional blocks mixed with conditional modifiers.
|
31
|
+
(#1308, #1324, #1326, #1327)
|
32
|
+
- Add table of contents IDs to redcarpet generated markdown. (#1323)
|
33
|
+
- Backport fixes for Ruby 1.9 (#1320)
|
34
|
+
- Fix parsing of checksums in yard server (#1301)
|
35
|
+
- Map Ruby C variable error names to Ruby classes (#1270, #1275)
|
36
|
+
- Fix initialization of RDocMarkup across threads (#1318)
|
37
|
+
- Remove warning for Kernel#open (#1312)
|
38
|
+
- Omit spec files in gem package (#1307)
|
39
|
+
- README updates (#1322)
|
40
|
+
|
41
|
+
# 0.9.24 - January 8th, 2020
|
42
|
+
|
43
|
+
[0.9.24]: https://github.com/lsegal/yard/compare/v0.9.23...v0.9.24
|
44
|
+
|
45
|
+
- Add {YARD::CodeObjects::NamespaceMapper.on_invalidate} callback when separator
|
46
|
+
cache is changed.
|
47
|
+
- Fix issue where Registry fails to resolve first-time lookups on instance methods.
|
2
48
|
|
3
49
|
# 0.9.23 - January 5th, 2020
|
4
50
|
|
@@ -35,9 +81,9 @@
|
|
35
81
|
|
36
82
|
- Fix parsing of stringified Symbols in Ruby source (#1256).
|
37
83
|
- Fix path traversal vulnerability in `yard server`. This bug would allow
|
38
|
-
|
39
|
-
|
40
|
-
|
84
|
+
unsanitized HTTP requests to access arbitrary files on the machine of a
|
85
|
+
`yard server` host under certain conditions. Thanks to CuongMX from
|
86
|
+
Viettel Cyber Security for discovering this vulnerability.
|
41
87
|
|
42
88
|
# 0.9.19 - April 2nd, 2019
|
43
89
|
|
data/CONTRIBUTING.md
CHANGED
@@ -42,7 +42,7 @@ If you believe you have found a bug, please include a few things in your report:
|
|
42
42
|
if the behavior is intentional or not.
|
43
43
|
|
44
44
|
Finally, please **DO NOT** submit a report that states a feature simply
|
45
|
-
|
45
|
+
_"does not work"_ without any additional information in the report. Consider
|
46
46
|
the issue from the maintainer's perspective: in order to fix your bug, we
|
47
47
|
need to drill down to the broken line of code, and in order to do this,
|
48
48
|
we must be able to reproduce the issue on our end to find that line of
|
@@ -132,7 +132,7 @@ help handle day-to-day operations, such as releases, bug fixes, and triage.
|
|
132
132
|
You can do some of this as a non-maintainer too, but if you like this project,
|
133
133
|
we can always use more hands on deck!
|
134
134
|
|
135
|
-
[code]: https://github.com/lsegal/yard/blob/
|
135
|
+
[code]: https://github.com/lsegal/yard/blob/main/CODE_OF_CONDUCT.md
|
136
136
|
[issues]: http://github.com/lsegal/yard/issues
|
137
137
|
[commit]: http://chris.beams.io/posts/git-commit/
|
138
138
|
[pr]: https://help.github.com/articles/using-pull-requests/
|
data/Gemfile
CHANGED
@@ -7,8 +7,9 @@ group :development do
|
|
7
7
|
gem 'rdoc'
|
8
8
|
gem 'json'
|
9
9
|
gem 'simplecov'
|
10
|
-
gem 'samus', '~> 3.0.
|
10
|
+
gem 'samus', '~> 3.0.9', :require => false
|
11
11
|
gem 'coveralls', :require => false
|
12
|
+
gem 'webrick'
|
12
13
|
end
|
13
14
|
|
14
15
|
group :asciidoc do
|
@@ -16,11 +17,12 @@ group :asciidoc do
|
|
16
17
|
end
|
17
18
|
|
18
19
|
group :markdown do
|
19
|
-
gem 'redcarpet'
|
20
|
+
gem 'redcarpet'
|
21
|
+
gem 'commonmarker'
|
20
22
|
end
|
21
23
|
|
22
24
|
group :textile do
|
23
|
-
gem 'RedCloth'
|
25
|
+
gem 'RedCloth'
|
24
26
|
end
|
25
27
|
|
26
28
|
group :server do
|