rdoc-markdown 0.10.0 → 0.10.1

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: a3af6b5292a9333e8e0749195f1b799f80015a2b23bc7c8bd47068f315671d5c
4
- data.tar.gz: 759122408198407ee3f300ee7effa75e4f7d02cf765a989f30db4ee1d79b4fa9
3
+ metadata.gz: 95c2805fe0b3c3762f7a90354a6af836c974c86f5d1ebf186a3c4b75aca99d22
4
+ data.tar.gz: 2637246dbf1cb793d2b72fe6caecb9ca5d33224963c08207994216ffdd712793
5
5
  SHA512:
6
- metadata.gz: e259a75c590f3414e036763c213a3b19e8df9d78a964155ba20ebb6b5ec440b25cca3b4a925fc39181100267079cd89e30db711aabb087b34245b72dc3ca9873
7
- data.tar.gz: e70488f82388bdbb6e1bd8a99e32864da66c86adf2e8cf58f2ee3775523a9283002b30aa31f8a8d080cc70812d6efcee5300bffb665b4bf432b2fd8643db5a86
6
+ metadata.gz: ae4b635a4926dc848337aa7f533ef9f0d2ae683a503ae30d9f9d83d076e05fadbe6ab7b7df6db4fddd74e571904676a0a76b9cadb3245573c3b2a175a2774c48
7
+ data.tar.gz: 5981bc64273f6a03de7b0ef2a0201d9a164409efd178292f4fe7ae336c8b29a6040aaba647e51b06a96cd519a7419eff74982213f94c527b328db783b5b6fc91
data/.yard-lint.yml CHANGED
@@ -13,6 +13,7 @@ AllValidators:
13
13
  - "spec/**/*"
14
14
  - "test/**/*"
15
15
  - "tmp/**/*"
16
+ - lib/rdoc/markdown/version.rb
16
17
 
17
18
  FailOnSeverity: error
18
19
  MinCoverage: 100.0
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.10.1
6
+
7
+ ### Changed
8
+ - Stop adding a global "Type signatures available" notice to generated class/module pages.
9
+
5
10
  ## 0.10.0
6
11
 
7
12
  - Reworked RDoc 8 support
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rdoc-markdown (0.10.0)
4
+ rdoc-markdown (0.10.1)
5
5
  csv
6
6
  erb
7
7
  rdoc
@@ -403,13 +403,6 @@ class RDoc::Generator::Markdown
403
403
  signatures.join(" | ")
404
404
  end
405
405
 
406
- # Checks whether this documentation set has parsed RBS signatures.
407
- #
408
- # @return [Boolean] True when type signatures are available.
409
- def types_available?
410
- @rbs_method_signatures.any?
411
- end
412
-
413
406
  # Merges RDoc parameter names into a type-only signature.
414
407
  #
415
408
  # @param signature [String] Method signature from RDoc call sequence.
@@ -1,10 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Gem metadata namespace.
4
3
  module Rdoc
5
- # Version namespace for rdoc-markdown.
6
4
  module Markdown
7
- # Current gem version.
8
- VERSION = "0.10.0"
5
+ VERSION = "0.10.1"
9
6
  end
10
7
  end
@@ -1,9 +1,5 @@
1
1
  # <%= klass.type.capitalize %> <%= display_name(klass) %>
2
2
  <%= anchor(klass.aref.strip) %>
3
- <%- if types_available? -%>
4
-
5
- _Type signatures available._
6
- <%- end -%>
7
3
  <%- class_description = describe(klass) -%>
8
4
  <%- unless class_description.empty? -%>
9
5
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rdoc-markdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stanislav (Stas) Katkov