yard-relative_markdown_links 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: e4ae87dfb52ffaba740028607ca95c481592876e8e09bf6c33fcb2749de622ce
4
+ data.tar.gz: 15ff31ae1f62c98dffdf763d790d69f76c6e56d84ef6cd67f97e581ab9294a10
5
+ SHA512:
6
+ metadata.gz: e287f2252264568ff72e8099d8ce905a941b05be5114474ac97c7245839608e59465ca6c879678985366f2d7e86eac1c0f15f14a782ab3a0ddc1b4f79e4f0350
7
+ data.tar.gz: 58e9fe0907a8220ba20355885848c54f8333f7ba851be33e872ca973ad3e370345d7febbd085562864f5d36129c3822ab3c569f5f7df81d14f936bfe11a636c7
data/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ /.bundle/
2
+ /.yardoc/
3
+ /doc/
4
+ /pkg/
data/.rubocop.yml ADDED
@@ -0,0 +1,35 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.3
3
+ Exclude:
4
+ - bin/bundle
5
+ - bin/rake
6
+ - vendor/bundle/**/*
7
+
8
+ Metrics/LineLength:
9
+ Enabled: false
10
+
11
+ Metrics/MethodLength:
12
+ Enabled: false
13
+
14
+ Style/BlockDelimiters:
15
+ EnforcedStyle: semantic
16
+
17
+ Style/Documentation:
18
+ Exclude:
19
+ - test/**/*
20
+
21
+ Style/HashSyntax:
22
+ Exclude:
23
+ - Rakefile
24
+
25
+ Style/Lambda:
26
+ EnforcedStyle: literal
27
+
28
+ Style/StringLiterals:
29
+ EnforcedStyle: double_quotes
30
+
31
+ Style/SymbolArray:
32
+ EnforcedStyle: brackets
33
+
34
+ Style/WordArray:
35
+ EnforcedStyle: brackets
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.5.1
data/.travis.yml ADDED
@@ -0,0 +1,6 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3
5
+ - 2.4
6
+ - 2.5
data/.yardopts ADDED
@@ -0,0 +1,5 @@
1
+ --load ./lib/yard/relative_markdown_links.rb
2
+ --markup markdown
3
+ --no-private
4
+ -
5
+ *.md
@@ -0,0 +1,53 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+
8
+ ## Our Standards
9
+
10
+ Examples of behavior that contributes to creating a positive environment include:
11
+
12
+ * Using welcoming and inclusive language
13
+ * Being respectful of differing viewpoints and experiences
14
+ * Gracefully accepting constructive criticism
15
+ * Focusing on what is best for the community
16
+ * Showing empathy towards other community members
17
+
18
+ Examples of unacceptable behavior by participants include:
19
+
20
+ * The use of sexualized language or imagery and unwelcome sexual attention or advances
21
+ * Trolling, insulting/derogatory comments, and personal or political attacks
22
+ * Public or private harassment
23
+ * Publishing others' private information, such as a physical or electronic address, without explicit permission
24
+ * Other conduct which could reasonably be considered inappropriate in a professional setting
25
+
26
+
27
+ ## Our Responsibilities
28
+
29
+ Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
30
+
31
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
32
+
33
+
34
+ ## Scope
35
+
36
+ This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community.
37
+ Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
38
+ Representation of a project may be further defined and clarified by project maintainers.
39
+
40
+
41
+ ## Enforcement
42
+
43
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at andrew@haines.org.nz.
44
+ All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances.
45
+ The project team is obligated to maintain confidentiality with regard to the reporter of an incident.
46
+ Further details of specific enforcement policies may be posted separately.
47
+
48
+ Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
49
+
50
+
51
+ ## Attribution
52
+
53
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org) [version 1.4](http://contributor-covenant.org/version/1/4/).
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,52 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ yard-relative_markdown_links (0.1.1)
5
+ nokogiri (~> 1.8.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ ast (2.4.0)
11
+ coderay (1.1.2)
12
+ jaro_winkler (1.5.1)
13
+ method_source (0.9.0)
14
+ mini_portile2 (2.3.0)
15
+ minitest (5.11.3)
16
+ nokogiri (1.8.2)
17
+ mini_portile2 (~> 2.3.0)
18
+ parallel (1.12.1)
19
+ parser (2.5.1.0)
20
+ ast (~> 2.4.0)
21
+ powerpack (0.1.2)
22
+ pry (0.11.3)
23
+ coderay (~> 1.1.0)
24
+ method_source (~> 0.9.0)
25
+ rainbow (3.0.0)
26
+ rake (12.3.1)
27
+ rubocop (0.57.1)
28
+ jaro_winkler (~> 1.5.1)
29
+ parallel (~> 1.10)
30
+ parser (>= 2.5)
31
+ powerpack (~> 0.1)
32
+ rainbow (>= 2.2.2, < 4.0)
33
+ ruby-progressbar (~> 1.7)
34
+ unicode-display_width (~> 1.0, >= 1.0.1)
35
+ ruby-progressbar (1.9.0)
36
+ unicode-display_width (1.4.0)
37
+ yard (0.9.14)
38
+
39
+ PLATFORMS
40
+ ruby
41
+
42
+ DEPENDENCIES
43
+ bundler (~> 1.16)
44
+ minitest (~> 5.11)
45
+ pry (~> 0.11)
46
+ rake (~> 12.1)
47
+ rubocop (~> 0.57.1)
48
+ yard (~> 0.9)
49
+ yard-relative_markdown_links!
50
+
51
+ BUNDLED WITH
52
+ 1.16.2
data/LICENSE.md ADDED
@@ -0,0 +1,10 @@
1
+ # MIT License
2
+
3
+ Copyright © 2018 Andrew Haines
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
10
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,68 @@
1
+ # YARD::RelativeMarkdownLinks
2
+
3
+ A [YARD](https://yardoc.org) plugin to allow relative links between Markdown files.
4
+
5
+ GitHub and YARD render Markdown files differently.
6
+ In particular, relative links between Markdown files that work in GitHub don't work in YARD.
7
+ For example, if you have `[hello](FOO.md)` in your README, YARD renders it as `<a href="FOO.md">hello</a>`, creating a broken link in your docs.
8
+
9
+ With this plugin enabled, you'll get `<a href="file.FOO.html">hello</a>` instead, which correctly links through to the rendered HTML file.
10
+
11
+
12
+ ## Installation
13
+
14
+ Add this line to your application's `Gemfile`:
15
+
16
+ ```ruby
17
+ gem "yard-relative_markdown_links"
18
+ ```
19
+
20
+ And then execute:
21
+
22
+ ```console
23
+ $ bundle install
24
+ ```
25
+
26
+ Or install it yourself as:
27
+
28
+ ```console
29
+ $ gem install yard-relative_markdown_links
30
+ ```
31
+
32
+
33
+ ## Usage
34
+
35
+ Add this line to your application's `.yardopts`:
36
+
37
+ ```
38
+ --plugin relative_markdown_links
39
+ ```
40
+
41
+ You'll also need to make sure your Markdown files are processed by YARD.
42
+ To include all Markdown files in your project, add the following lines to the end of your application's `.yardopts`:
43
+
44
+ ```
45
+ -
46
+ **/*.md
47
+ ```
48
+
49
+
50
+ ## Development
51
+
52
+ After checking out the repo, run `bin/setup` to install dependencies.
53
+ Then, run `bin/rake test` to run the tests.
54
+ You can also run `bin/console` for an interactive prompt that will allow you to experiment.
55
+
56
+ To install this gem onto your local machine, run `bin/rake install`.
57
+ To release a new version, update the version number in `lib/yard/relative_markdown_links/version.rb`, and then run `bin/rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [RubyGems](https://rubygems.org).
58
+
59
+
60
+ ## Contributing
61
+
62
+ Bug reports and pull requests are welcome [on GitHub](https://github.com/haines/yard-relative_markdown_links).
63
+ This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](CODE_OF_CONDUCT.md).
64
+
65
+
66
+ ## License
67
+
68
+ © 2018 Andrew Haines, released under the [MIT license](LICENSE.md).
data/Rakefile ADDED
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rake/testtask"
5
+ require "rubocop/rake_task"
6
+ require "yard"
7
+
8
+ Rake::TestTask.new do |task|
9
+ task.test_files = FileList["test/**/*_test.rb"]
10
+ end
11
+
12
+ RuboCop::RakeTask.new
13
+
14
+ desc "Generate documentation"
15
+ YARD::Rake::YardocTask.new :doc
16
+ CLOBBER << "doc/"
17
+
18
+ task :default => [:doc, :rubocop, :test]
data/bin/bundle ADDED
@@ -0,0 +1,105 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ #
5
+ # This file was generated by Bundler.
6
+ #
7
+ # The application 'bundle' is installed as part of a gem, and
8
+ # this file is here to facilitate running it.
9
+ #
10
+
11
+ require "rubygems"
12
+
13
+ m = Module.new do
14
+ module_function
15
+
16
+ def invoked_as_script?
17
+ File.expand_path($0) == File.expand_path(__FILE__)
18
+ end
19
+
20
+ def env_var_version
21
+ ENV["BUNDLER_VERSION"]
22
+ end
23
+
24
+ def cli_arg_version
25
+ return unless invoked_as_script? # don't want to hijack other binstubs
26
+ return unless "update".start_with?(ARGV.first || " ") # must be running `bundle update`
27
+ bundler_version = nil
28
+ update_index = nil
29
+ ARGV.each_with_index do |a, i|
30
+ if update_index && update_index.succ == i && a =~ Gem::Version::ANCHORED_VERSION_PATTERN
31
+ bundler_version = a
32
+ end
33
+ next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/
34
+ bundler_version = $1 || ">= 0.a"
35
+ update_index = i
36
+ end
37
+ bundler_version
38
+ end
39
+
40
+ def gemfile
41
+ gemfile = ENV["BUNDLE_GEMFILE"]
42
+ return gemfile if gemfile && !gemfile.empty?
43
+
44
+ File.expand_path("../../Gemfile", __FILE__)
45
+ end
46
+
47
+ def lockfile
48
+ lockfile =
49
+ case File.basename(gemfile)
50
+ when "gems.rb" then gemfile.sub(/\.rb$/, gemfile)
51
+ else "#{gemfile}.lock"
52
+ end
53
+ File.expand_path(lockfile)
54
+ end
55
+
56
+ def lockfile_version
57
+ return unless File.file?(lockfile)
58
+ lockfile_contents = File.read(lockfile)
59
+ return unless lockfile_contents =~ /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/
60
+ Regexp.last_match(1)
61
+ end
62
+
63
+ def bundler_version
64
+ @bundler_version ||= begin
65
+ env_var_version || cli_arg_version ||
66
+ lockfile_version || "#{Gem::Requirement.default}.a"
67
+ end
68
+ end
69
+
70
+ def load_bundler!
71
+ ENV["BUNDLE_GEMFILE"] ||= gemfile
72
+
73
+ # must dup string for RG < 1.8 compatibility
74
+ activate_bundler(bundler_version.dup)
75
+ end
76
+
77
+ def activate_bundler(bundler_version)
78
+ if Gem::Version.correct?(bundler_version) && Gem::Version.new(bundler_version).release < Gem::Version.new("2.0")
79
+ bundler_version = "< 2"
80
+ end
81
+ gem_error = activation_error_handling do
82
+ gem "bundler", bundler_version
83
+ end
84
+ return if gem_error.nil?
85
+ require_error = activation_error_handling do
86
+ require "bundler/version"
87
+ end
88
+ return if require_error.nil? && Gem::Requirement.new(bundler_version).satisfied_by?(Gem::Version.new(Bundler::VERSION))
89
+ warn "Activating bundler (#{bundler_version}) failed:\n#{gem_error.message}\n\nTo install the version of bundler this project requires, run `gem install bundler -v '#{bundler_version}'`"
90
+ exit 42
91
+ end
92
+
93
+ def activation_error_handling
94
+ yield
95
+ nil
96
+ rescue StandardError, LoadError => e
97
+ e
98
+ end
99
+ end
100
+
101
+ m.load_bundler!
102
+
103
+ if m.invoked_as_script?
104
+ load Gem.bin_path("bundler", "bundle")
105
+ end
data/bin/console ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "bundler/setup"
5
+ require "yard/relative_markdown_links"
6
+
7
+ require "pry"
8
+ Pry.start
data/bin/rake ADDED
@@ -0,0 +1,29 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ #
5
+ # This file was generated by Bundler.
6
+ #
7
+ # The application 'rake' is installed as part of a gem, and
8
+ # this file is here to facilitate running it.
9
+ #
10
+
11
+ require "pathname"
12
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
13
+ Pathname.new(__FILE__).realpath)
14
+
15
+ bundle_binstub = File.expand_path("../bundle", __FILE__)
16
+
17
+ if File.file?(bundle_binstub)
18
+ if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
19
+ load(bundle_binstub)
20
+ else
21
+ abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
22
+ Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
23
+ end
24
+ end
25
+
26
+ require "rubygems"
27
+ require "bundler/setup"
28
+
29
+ load Gem.bin_path("rake", "rake")
data/bin/setup ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+
4
+ bundle install
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "yard/relative_markdown_links"
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "nokogiri"
4
+ require "yard"
5
+ require "yard/relative_markdown_links/version"
6
+
7
+ module YARD # rubocop:disable Style/Documentation
8
+ # GitHub and YARD render Markdown files differently. In particular, relative
9
+ # links between Markdown files that work in GitHub don't work in YARD.
10
+ # For example, if you have `[hello](FOO.md)` in your README, YARD renders it
11
+ # as `<a href="FOO.md">hello</a>`, creating a broken link in your docs.
12
+
13
+ # With this plugin enabled, you'll get `<a href="file.FOO.html">hello</a>`
14
+ # instead, which correctly links through to the rendered HTML file.
15
+ module RelativeMarkdownLinks
16
+ # Resolves relative links to Markdown files.
17
+ # @param [String] text the HTML fragment in which to resolve links.
18
+ # @return [String] HTML with relative links to Markdown files converted to `{file:}` links.
19
+ def resolve_links(text)
20
+ html = Nokogiri::HTML.fragment(text)
21
+ html.css("a[href]").each do |link|
22
+ href = URI(link["href"])
23
+ next unless href.relative? && markup_for_file(nil, href.path) == :markdown
24
+ link.replace "{file:#{href} #{link.inner_html}}"
25
+ end
26
+ super(html.to_s)
27
+ end
28
+ end
29
+
30
+ Templates::Template.extra_includes << RelativeMarkdownLinks
31
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module YARD
4
+ module RelativeMarkdownLinks
5
+ # Current version of the yard-relative_markdown_links gem.
6
+ VERSION = "0.1.1"
7
+ end
8
+ end
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ lib = File.expand_path("lib", __dir__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+
6
+ require "yard/relative_markdown_links/version"
7
+
8
+ Gem::Specification.new do |spec|
9
+ spec.name = "yard-relative_markdown_links"
10
+ spec.version = YARD::RelativeMarkdownLinks::VERSION
11
+ spec.authors = ["Andrew Haines"]
12
+ spec.email = ["andrew@haines.org.nz"]
13
+
14
+ spec.summary = "A YARD plugin to allow relative links between Markdown files"
15
+
16
+ spec.homepage = "https://github.com/haines/yard-relative_markdown_links"
17
+ spec.license = "MIT"
18
+
19
+ spec.files = Dir.chdir(__dir__) { `git ls-files -z`.split("\x0").reject { |path| path.match(%r{^test/}) } }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.metadata["yard.run"] = "yri"
23
+
24
+ spec.add_dependency "nokogiri", "~> 1.8.1"
25
+
26
+ spec.add_development_dependency "bundler", "~> 1.16"
27
+ spec.add_development_dependency "minitest", "~> 5.11"
28
+ spec.add_development_dependency "pry", "~> 0.11"
29
+ spec.add_development_dependency "rake", "~> 12.1"
30
+ spec.add_development_dependency "rubocop", "~> 0.57.1"
31
+ spec.add_development_dependency "yard", "~> 0.9"
32
+ end
metadata ADDED
@@ -0,0 +1,162 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: yard-relative_markdown_links
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Andrew Haines
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-06-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: nokogiri
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 1.8.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 1.8.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.16'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.16'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.11'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.11'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.11'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.11'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '12.1'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '12.1'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rubocop
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 0.57.1
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 0.57.1
97
+ - !ruby/object:Gem::Dependency
98
+ name: yard
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '0.9'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '0.9'
111
+ description:
112
+ email:
113
+ - andrew@haines.org.nz
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - ".gitignore"
119
+ - ".rubocop.yml"
120
+ - ".ruby-version"
121
+ - ".travis.yml"
122
+ - ".yardopts"
123
+ - CODE_OF_CONDUCT.md
124
+ - Gemfile
125
+ - Gemfile.lock
126
+ - LICENSE.md
127
+ - README.md
128
+ - Rakefile
129
+ - bin/bundle
130
+ - bin/console
131
+ - bin/rake
132
+ - bin/setup
133
+ - lib/yard-relative_markdown_links.rb
134
+ - lib/yard/relative_markdown_links.rb
135
+ - lib/yard/relative_markdown_links/version.rb
136
+ - yard-relative_markdown_links.gemspec
137
+ homepage: https://github.com/haines/yard-relative_markdown_links
138
+ licenses:
139
+ - MIT
140
+ metadata:
141
+ yard.run: yri
142
+ post_install_message:
143
+ rdoc_options: []
144
+ require_paths:
145
+ - lib
146
+ required_ruby_version: !ruby/object:Gem::Requirement
147
+ requirements:
148
+ - - ">="
149
+ - !ruby/object:Gem::Version
150
+ version: '0'
151
+ required_rubygems_version: !ruby/object:Gem::Requirement
152
+ requirements:
153
+ - - ">="
154
+ - !ruby/object:Gem::Version
155
+ version: '0'
156
+ requirements: []
157
+ rubyforge_project:
158
+ rubygems_version: 2.7.7
159
+ signing_key:
160
+ specification_version: 4
161
+ summary: A YARD plugin to allow relative links between Markdown files
162
+ test_files: []