rdoc-markdown 0.19.0 → 0.19.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: 7c5f77f880bb2c5dee60d22aaec8c1ed37e2525234afab66983549482406e321
4
- data.tar.gz: c395b71591e6c71e16ef766cd6b389eb47a3c520dd859c6605b3540b30e98b83
3
+ metadata.gz: 5d9e8dcc9378d9424beb37d2e482b881ca5b536af4150a6caed14e872a9b4a5d
4
+ data.tar.gz: 378ce21e41ab926bdf056d67445aa49ad412873c37ac89a4840907acac097522
5
5
  SHA512:
6
- metadata.gz: 39fca2d4e12f36652b1991d6bbada634b1f7b3d2280c1d39c9a0dce6398aa7210384d1451ff43797f9fd09bdf897fc14ff92b0b2c20159bf74653c2a27da24c6
7
- data.tar.gz: 90fb4b652886f2f8da0637ac102ec728bd457c9eb49b77b27e542afe945b5da211a5b57a3b860c4edc711f57a6a5ce8a121bff73ae542daad051a57356ac348f
6
+ metadata.gz: 23d9c7b35a7bbf4366c49f192adb0061ca190331d024bc37d9ed24554cce44a2892bc7b21b86fd0c7678597c9fa1105d2ba2705e63e811bd0cf75286cd839537
7
+ data.tar.gz: b484ca5aeda4fcc59f6d029190bc15c1915fbf71e91c9a4c1db5fe80467661ffe428291c6068788d3bfec6fe69800a89f6124886e49a910fdc44f97b4914e106
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.19.1
6
+
7
+ - Store fullpath for files, instead of just file names.
8
+
5
9
  ## 0.19.0
6
10
 
7
11
  - Remove the `markdown_unknown_tags` option and use reverse_markdown's default handling.
@@ -19,7 +19,7 @@ module RDoc::Generator::Markdown::Index
19
19
  def write_index(csv)
20
20
  csv << %w[name type path]
21
21
  classes.each { |klass| write_class_rows(csv, klass, output_path_for(klass)) }
22
- pages.each { |page| csv << [File.basename(normalize_input_path_for_output(page.relative_name)), "File", page_output_path(page)] }
22
+ pages.each { |page| csv << [normalize_input_path_for_output(page.relative_name), "File", page_output_path(page)] }
23
23
  end
24
24
 
25
25
  # Writes one class and its visible member rows.
@@ -5,6 +5,6 @@ module Rdoc
5
5
  # @private
6
6
  module Markdown
7
7
  # @private
8
- VERSION = "0.19.0"
8
+ VERSION = "0.19.1"
9
9
  end
10
10
  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.19.0
4
+ version: 0.19.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stanislav (Stas) Katkov
@@ -208,7 +208,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
208
208
  - !ruby/object:Gem::Version
209
209
  version: '0'
210
210
  requirements: []
211
- rubygems_version: 4.0.16
211
+ rubygems_version: 4.0.19
212
212
  specification_version: 4
213
213
  summary: RDoc plugin to generate markdown documentation
214
214
  test_files: []