rdoc-markdown 0.5.0 → 0.7.0

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.
data/example/Waterfowl.md CHANGED
@@ -1,8 +1,11 @@
1
- # module Waterfowl [](#module-Waterfowl) [](#top)
1
+ # Module Waterfowl
2
+ <a id="module-Waterfowl"></a>
3
+
2
4
  A mixin for waterfowl creatures.
3
5
 
4
- ## Public Instance Methods
5
- ### swim() [](#method-i-swim)
6
- Swimming helper.
6
+ ### Public Instance Methods
7
+
8
+ #### `swim()`
9
+ <a id="method-i-swim"></a>
7
10
 
8
-
11
+ Swimming helper.
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ eval_gemfile "../Gemfile"
4
+
5
+ gem "rdoc", git: "https://github.com/ruby/rdoc.git", branch: "master"
data/lib/markdown.rb CHANGED
@@ -2,5 +2,6 @@
2
2
 
3
3
  require "rdoc/generator/markdown"
4
4
 
5
+ # Compatibility namespace loaded by RDoc's generator discovery.
5
6
  class RDoc::Markdown
6
7
  end