rdoc-markdown 0.17.0 → 0.17.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: 6c8f2f083fa79cfc383a5de5efe80ed2ce86ca5c8820218ae57f9de9427f8e6e
4
- data.tar.gz: b9380e6323ce669abc903f3fb29f598cd346f017c565ef4c7f8d48146124184a
3
+ metadata.gz: '09bb3098a38fdecae06518b91286f487fa4f547246a9ab62728037b9bc373d5b'
4
+ data.tar.gz: '094af12517d5e15a103e2a93c9472219b7611d4c1246999c996192ce69b5d992'
5
5
  SHA512:
6
- metadata.gz: 7245acbe5230c82d9209a9203d9c86dfcd18416b1a60b56c574b5c59bbf81a752c388771e81e7cb135d9197620f2bc7f497db3ad33a0d7151ae1032b1f0b8115
7
- data.tar.gz: 547ef3178aceffcf1e44ace777f18e97ed4ffc370ab3e99526ebbcebc053eca307c0c57e9f5d739ebc3b8156912c1b9dc13fbb08289408130c1bc38c92d87855
6
+ metadata.gz: dcdfcc880975aed0d669ae3006f3b938b4799a3a90fe933f4972479c6edb50aa7a4fdca3c69fe617e45eb5305cf7a0f22eebef46fdc2b22206a971f97136217b
7
+ data.tar.gz: 62bd6ec996d342011a9b57d216ef06ba574af710eeacc69a909d280fdcb29f15851aa492f2fc729599c5c5e820ade24b9bd8cc1edf31d748896a891eebd17ca2
data/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
 
4
4
  ## Unreleased
5
5
 
6
+ ## 0.17.1
7
+
8
+ - Don't include files with .tt extension
9
+
6
10
  ## 0.17.0
7
11
 
8
12
  - Remove fabricated external namespaces and preserve exact class and module identities across generated paths, index entries, metadata, and links.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rdoc-markdown (0.17.0)
4
+ rdoc-markdown (0.17.1)
5
5
  csv
6
6
  erb
7
7
  rdoc (>= 8.0)
@@ -108,7 +108,7 @@ GEM
108
108
  nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
109
109
  rainbow (3.1.1)
110
110
  rake (13.4.2)
111
- rbs (4.0.2)
111
+ rbs (4.1.0)
112
112
  logger
113
113
  prism (>= 1.6.0)
114
114
  tsort
@@ -760,7 +760,9 @@ class RDoc::Generator::Markdown
760
760
  klass.sections.any? { |section| section.title.to_s.match?(/\S/) || !section.to_document.empty? }
761
761
  end.sort
762
762
  @class_output_paths = @classes.to_h { |klass| [klass.full_name, output_path_for(klass)] }
763
- @pages = @store.all_files.select(&:text?).select(&:display?).sort_by(&:base_name)
763
+ @pages = @store.all_files.select(&:text?).select(&:display?)
764
+ .reject { |page| page.relative_name.end_with?(".tt") }
765
+ .sort_by(&:base_name)
764
766
  @markdown_output_object_ids = (@classes + @pages).map(&:object_id)
765
767
  @known_output_paths = @class_output_paths.values
766
768
  @pages.each { |page| @known_output_paths << page_output_path(page) }
@@ -5,6 +5,6 @@ module Rdoc
5
5
  # @private
6
6
  module Markdown
7
7
  # @private
8
- VERSION = "0.17.0"
8
+ VERSION = "0.17.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.17.0
4
+ version: 0.17.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stanislav (Stas) Katkov