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 +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +2 -2
- data/lib/rdoc/generator/markdown.rb +3 -1
- data/lib/rdoc/markdown/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '09bb3098a38fdecae06518b91286f487fa4f547246a9ab62728037b9bc373d5b'
|
|
4
|
+
data.tar.gz: '094af12517d5e15a103e2a93c9472219b7611d4c1246999c996192ce69b5d992'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dcdfcc880975aed0d669ae3006f3b938b4799a3a90fe933f4972479c6edb50aa7a4fdca3c69fe617e45eb5305cf7a0f22eebef46fdc2b22206a971f97136217b
|
|
7
|
+
data.tar.gz: 62bd6ec996d342011a9b57d216ef06ba574af710eeacc69a909d280fdcb29f15851aa492f2fc729599c5c5e820ade24b9bd8cc1edf31d748896a891eebd17ca2
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
rdoc-markdown (0.17.
|
|
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
|
|
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?)
|
|
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) }
|