yard-relative_markdown_links 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e4ae87dfb52ffaba740028607ca95c481592876e8e09bf6c33fcb2749de622ce
4
- data.tar.gz: 15ff31ae1f62c98dffdf763d790d69f76c6e56d84ef6cd67f97e581ab9294a10
3
+ metadata.gz: 241fab84ccb581bb448a4982b49250ee49b522ea735f59a51b12075b62327951
4
+ data.tar.gz: 46c1e2924b1022be33a4285392a7919f2f50c9805b27af78de92899e73c1e1d4
5
5
  SHA512:
6
- metadata.gz: e287f2252264568ff72e8099d8ce905a941b05be5114474ac97c7245839608e59465ca6c879678985366f2d7e86eac1c0f15f14a782ab3a0ddc1b4f79e4f0350
7
- data.tar.gz: 58e9fe0907a8220ba20355885848c54f8333f7ba851be33e872ca973ad3e370345d7febbd085562864f5d36129c3822ab3c569f5f7df81d14f936bfe11a636c7
6
+ metadata.gz: ee7f97e58019d1cc899eca68bb052a8f7ed75b5dfdb70c67442a826a5d211ef89e1439d60750abd21df038f20079d606c14bf3b2c8029ed32cc1abf890b5ee58
7
+ data.tar.gz: 635a2aec1be2c4576d6a098aeb55f790070d4d32ef921b6ca9499ea893899179a5dcc0a5812581d49ccddc9467e6d8e442e937c9aa92ec2d5ae0fd90af4b9520
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- yard-relative_markdown_links (0.1.1)
4
+ yard-relative_markdown_links (0.1.2)
5
5
  nokogiri (~> 1.8.1)
6
6
 
7
7
  GEM
@@ -9,7 +9,7 @@ module YARD # rubocop:disable Style/Documentation
9
9
  # links between Markdown files that work in GitHub don't work in YARD.
10
10
  # For example, if you have `[hello](FOO.md)` in your README, YARD renders it
11
11
  # as `<a href="FOO.md">hello</a>`, creating a broken link in your docs.
12
-
12
+ #
13
13
  # With this plugin enabled, you'll get `<a href="file.FOO.html">hello</a>`
14
14
  # instead, which correctly links through to the rendered HTML file.
15
15
  module RelativeMarkdownLinks
@@ -3,6 +3,6 @@
3
3
  module YARD
4
4
  module RelativeMarkdownLinks
5
5
  # Current version of the yard-relative_markdown_links gem.
6
- VERSION = "0.1.1"
6
+ VERSION = "0.1.2"
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yard-relative_markdown_links
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Haines