rdoc-markdown 0.10.2 → 0.10.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: 7f62c96dacb7b3f4987b9d48f3f949ac37ee0abe715288139d937f9085e63097
4
- data.tar.gz: 7a8326a4247d835f83694707f03a851c1a1c676fc40cf29fcfc9e682f6226480
3
+ metadata.gz: f0eae6267dc89dd3b398c7498a2cc7d9458feb1b177a66dbd5dcdd20d1c421e4
4
+ data.tar.gz: 8dff34ad7b48a1bd9b0a06a8b395490427888427425dc24e4551eee48a75028d
5
5
  SHA512:
6
- metadata.gz: e332801e5958e9f91342c62b2df262270a38386624257835d68ed96c97b4d3a113f9d4d89b723abc5387239dd9425a93accc485bb534b582cfc629ba03f8dce6
7
- data.tar.gz: cd8a226680fbc336396b23b2f90cfcbe1bf78822426ad538ede0bd44f6e7bd05f0defdf01c2af8b7083fc4aa835c761e527824a727782d19754f74bd8f93773f
6
+ metadata.gz: bee22d3e444a8bbc5bf4fc0d0e5f6f9c269b8dd5ae70c9e00a91b9b41dad23490b51b56bfe3af6d7dcbc20e0d0e73e2afd2bf1a224598da29610ba08f713eec5
7
+ data.tar.gz: 7836c11cd909c34211aac0a0e4908e7d25143bc9ccf4296a973f0ddadf4c1b205658ce1e6fffb76f48f227193ffb811cd41e4ad7ab273438ff54eda8263af0a8
data/CHANGELOG.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.10.3
6
+ - Remove extra spacing between title 3 and content
7
+
5
8
  ## 0.10.2
6
9
 
7
10
  ### Fixed
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rdoc-markdown (0.10.2)
4
+ rdoc-markdown (0.10.3)
5
5
  csv
6
6
  erb
7
7
  rdoc
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rdoc
4
4
  module Markdown
5
- VERSION = "0.10.2"
5
+ VERSION = "0.10.3"
6
6
  end
7
7
  end
@@ -1,7 +1,6 @@
1
1
  # <%= klass.type.capitalize %> <%= display_name(klass) %> <%= anchor(klass.aref.strip) %>
2
2
  <%- class_description = describe(klass) -%>
3
3
  <%- unless class_description.empty? -%>
4
-
5
4
  <%= class_description %>
6
5
  <%- end -%>
7
6
 
@@ -22,7 +21,6 @@
22
21
  <% constants.sort_by(&:name).each do |const| -%>
23
22
 
24
23
  #### `<%= const.name %>` <%= anchor(const.name) %>
25
-
26
24
  <%= describe(const, fallback: "Not documented.", heading_level_offset: 4) %>
27
25
  <% end -%>
28
26
  <%- end -%>
@@ -32,7 +30,6 @@
32
30
  <% attributes.sort_by(&:name).each do |attr| -%>
33
31
 
34
32
  #### `<%= attr.name %>` [<%= attr.rw %>] <%= anchor(attr.aref.strip) %>
35
-
36
33
  <%= describe(attr, fallback: "Not documented.", heading_level_offset: 4) %>
37
34
  <% end -%>
38
35
  <%- end -%>
@@ -45,7 +42,6 @@
45
42
  <% methods.each do |method| -%>
46
43
 
47
44
  #### `<%= method.name %><%= method_signature(method) %>` <%= anchor(method.aref) %>
48
-
49
45
  <%= method_description(method, current_class: klass) %>
50
46
  <% end -%>
51
47
  <% end -%>
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.2
4
+ version: 0.10.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stanislav (Stas) Katkov