html-proofer-unrendered-markdown 0.1.3

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2bcaedb6cbdc6a1d0e3acba5bf8c65fb5ec359de852a0c8efae0957794252c49
4
+ data.tar.gz: 38603c47d58355bc9b55e2ceffe8618acdae0a45de5fed87f07e5470a8425676
5
+ SHA512:
6
+ metadata.gz: 1e7831ff8308ee8c5bf3a39757c18069d9ee5f9d05c82337126b049d3ee9575f8e2717774a9800dd33df3ddfc279a4305ec7d42ec8a2681964bf66490b87cb59
7
+ data.tar.gz: 6f9c2f88392af2ae9b0739f217bf52659e32084890facbddcd9c227fd0f849d3f8c7b9042368106faf69e55e3d504d7074b0193eb5fd7840c336ac11d45bee69
@@ -0,0 +1,9 @@
1
+ FROM ruby:2.6
2
+
3
+ WORKDIR /gem
4
+ COPY . /gem
5
+ RUN gem install bundler
6
+ RUN bundle install
7
+
8
+ # Start the main process.
9
+ CMD ["rake"]
@@ -0,0 +1,120 @@
1
+ name: Ruby Gem
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - '*'
7
+ tags:
8
+ - '*'
9
+ pull_request:
10
+
11
+ jobs:
12
+ build:
13
+ name: Build, Test and Publish Ruby Gem
14
+ runs-on: ubuntu-latest
15
+
16
+ steps:
17
+ - uses: actions/checkout@v2
18
+ with:
19
+ fetch-depth: 0
20
+
21
+ - name: Fetch all history for all tags and branches
22
+ run: |
23
+ git fetch --prune --tags --force
24
+ echo "REF: ${{ github.ref }}"
25
+
26
+ - name: Install GitVersion
27
+ uses: gittools/actions/gitversion/setup@v0.9.2
28
+ if: startsWith(github.ref, 'refs/tags/') != true # Only use GitVersion for unstable builds
29
+ with:
30
+ versionSpec: '5.2.x'
31
+
32
+ - name: Execute GitVersion
33
+ id: gitversion
34
+ if: startsWith(github.ref, 'refs/tags/') != true
35
+ uses: gittools/actions/gitversion/execute@v0.9.2
36
+
37
+ - name: Create gem version number
38
+ id: gemversion
39
+ uses: actions/github-script@0.9.0
40
+ with:
41
+ github-token: ${{ secrets.GITHUB_TOKEN }}
42
+ script: |
43
+ const gemVersion = (function() {
44
+ const ref = '${{ github.ref }}';
45
+ const tagPrefix = 'refs/tags/';
46
+
47
+ if (ref.startsWith(tagPrefix)) {
48
+ // If a tag ref is being built, just return the tag verbatim
49
+ return ref.substring(tagPrefix.length);
50
+ }
51
+
52
+ return '${{ steps.gitversion.outputs.legacySemVerPadded }}';
53
+ })();
54
+
55
+ core.setOutput('version', gemVersion);
56
+
57
+ - name: Test with Rake
58
+ env:
59
+ GEM_VERSION: ${{ steps.gemversion.outputs.version }}
60
+ run: |
61
+ docker-compose up --build
62
+
63
+ - name: Set up Ruby 2.6
64
+ uses: actions/setup-ruby@v1
65
+ with:
66
+ ruby-version: 2.6.x
67
+
68
+ - name: Cache dependencies
69
+ uses: actions/cache@v1
70
+ with:
71
+ path: vendor/bundle
72
+ key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
73
+ restore-keys: ${{ runner.os }}-gems-
74
+
75
+ - name: Bundle install
76
+ run: |
77
+ gem install bundler
78
+ bundle config path vendor/bundle
79
+ bundle install --jobs 4 --retry 3
80
+
81
+ - name: Build gem
82
+ id: gem
83
+ env:
84
+ GEM_VERSION: ${{ steps.gemversion.outputs.version }}
85
+ run: |
86
+ GEM_BUILD_NAME=$(gem build html-proofer-unrendered-markdown.gemspec | awk '/File/ {print $2}')
87
+ echo "Gem filename: '${GEM_BUILD_NAME}'"
88
+ echo "::set-output name=name::${GEM_BUILD_NAME}"
89
+
90
+ - name: Upload artifact
91
+ uses: actions/upload-artifact@v2-preview
92
+ with:
93
+ name: ${{ steps.gem.outputs.name }}
94
+ path: ${{ steps.gem.outputs.name }}
95
+
96
+ - name: Publish to GPR
97
+ env:
98
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
99
+ OWNER: SwedbankPay
100
+ run: |
101
+ mkdir -p $HOME/.gem
102
+ touch $HOME/.gem/credentials
103
+ chmod 0600 $HOME/.gem/credentials
104
+ printf -- "---\n:github: Bearer ${GITHUB_TOKEN}\n" > $HOME/.gem/credentials
105
+ set -e
106
+ gem push --KEY github \
107
+ --host https://rubygems.pkg.github.com/${OWNER} \
108
+ ${{ steps.gem.outputs.name }} \
109
+ || echo "push failed ($?) probably due to version '${{ steps.gemversion.outputs.version }}' already existing in GPR."
110
+
111
+ - name: Publish to RubyGems
112
+ if: startsWith(github.ref, 'refs/tags/') # Only publish tagged commits
113
+ env:
114
+ RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
115
+ run: |
116
+ mkdir -p $HOME/.gem
117
+ touch $HOME/.gem/credentials
118
+ chmod 0600 $HOME/.gem/credentials
119
+ printf -- "---\n:rubygems_api_key: ${RUBYGEMS_API_KEY}\n" > $HOME/.gem/credentials
120
+ gem push ${{ steps.gem.outputs.name }}
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at daniel.granerud@payex.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [https://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: https://contributor-covenant.org
74
+ [version]: https://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in html-proofer-unrendered-markdown.gemspec
4
+ gemspec
5
+
6
+ gem "rake", "~> 12.0"
@@ -0,0 +1,67 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ html-proofer-unrendered-markdown (0.0.1.pre.INVALID)
5
+ html-proofer (~> 3.0, >= 3.15.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ addressable (2.7.0)
11
+ public_suffix (>= 2.0.2, < 5.0)
12
+ diff-lcs (1.3)
13
+ ethon (0.12.0)
14
+ ffi (>= 1.3.0)
15
+ ffi (1.12.2)
16
+ ffi (1.12.2-x64-mingw32)
17
+ html-proofer (3.15.3)
18
+ addressable (~> 2.3)
19
+ mercenary (~> 0.3)
20
+ nokogumbo (~> 2.0)
21
+ parallel (~> 1.3)
22
+ rainbow (~> 3.0)
23
+ typhoeus (~> 1.3)
24
+ yell (~> 2.0)
25
+ mercenary (0.4.0)
26
+ mini_portile2 (2.4.0)
27
+ nokogiri (1.10.9)
28
+ mini_portile2 (~> 2.4.0)
29
+ nokogiri (1.10.9-x64-mingw32)
30
+ mini_portile2 (~> 2.4.0)
31
+ nokogumbo (2.0.2)
32
+ nokogiri (~> 1.8, >= 1.8.4)
33
+ parallel (1.19.1)
34
+ public_suffix (4.0.4)
35
+ rainbow (3.0.0)
36
+ rake (12.3.3)
37
+ rspec (3.9.0)
38
+ rspec-core (~> 3.9.0)
39
+ rspec-expectations (~> 3.9.0)
40
+ rspec-mocks (~> 3.9.0)
41
+ rspec-core (3.9.2)
42
+ rspec-support (~> 3.9.3)
43
+ rspec-expectations (3.9.1)
44
+ diff-lcs (>= 1.2.0, < 2.0)
45
+ rspec-support (~> 3.9.0)
46
+ rspec-mocks (3.9.1)
47
+ diff-lcs (>= 1.2.0, < 2.0)
48
+ rspec-support (~> 3.9.0)
49
+ rspec-support (3.9.3)
50
+ typhoeus (1.3.1)
51
+ ethon (>= 0.9.0)
52
+ vcr (3.0.3)
53
+ yell (2.2.2)
54
+
55
+ PLATFORMS
56
+ ruby
57
+ x64-mingw32
58
+
59
+ DEPENDENCIES
60
+ bundler (~> 2.1.4)
61
+ html-proofer-unrendered-markdown!
62
+ rake (~> 12.0)
63
+ rspec (~> 3.5, >= 3.5.0)
64
+ vcr (~> 3.0, >= 3.0.3)
65
+
66
+ BUNDLED WITH
67
+ 2.1.4
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Daniel Granerud
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,56 @@
1
+ # Html::Proofer::Unrendered::Markdown
2
+
3
+ Adds extra html validation to html generated by Markdown documents.
4
+
5
+ In this version it only checks for unrendered Markdown links, looking for
6
+ anything that matches a `][`.
7
+
8
+ ## Installation
9
+
10
+ Add this line to your application's Gemfile:
11
+
12
+ ```ruby
13
+ gem 'html-proofer-unrendered-markdown'
14
+ ```
15
+
16
+ And then execute:
17
+
18
+ ```sh
19
+ bundle install
20
+ ```
21
+
22
+ Or install it yourself as:
23
+
24
+ ```sh
25
+ gem install html-proofer-unrendered-markdown
26
+ ```
27
+
28
+ Add the following to your [HTML-Proofer][html-proofer] setup:
29
+
30
+ ```rb
31
+ :check_unrendered_link => true
32
+ ```
33
+
34
+ ## Development
35
+
36
+ Run docker, or run `bundle exec rake install`.
37
+
38
+ To release a new version, tag the commit and push.
39
+
40
+ ## Contributing
41
+
42
+ Bug reports and pull requests are welcome.
43
+
44
+ This project is intended to be a safe, welcoming space for collaboration, and
45
+ contributors are expected to adhere to the
46
+ [code of conduct](https://github.com/swedbankpay/html-proofer-unrendered-markdown/blob/master/CODE_OF_CONDUCT.md).
47
+
48
+ ## License
49
+
50
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
51
+
52
+ ## Code of Conduct
53
+
54
+ Everyone interacting in the Html::Proofer::Unrendered::Markdown project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/html-proofer-unrendered-markdown/blob/master/CODE_OF_CONDUCT.md).
55
+
56
+ [html-proofer]: https://github.com/gjtorikian/html-proofer
@@ -0,0 +1,5 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "html/proofer/unrendered/markdown"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,12 @@
1
+ version: '3.7'
2
+
3
+ services:
4
+ checker:
5
+ build:
6
+ context: .
7
+ cache_from:
8
+ - ruby:2.6
9
+ dockerfile: .docker/Dockerfile
10
+ container_name: html_checker
11
+ volumes:
12
+ - .:/gem
@@ -0,0 +1,31 @@
1
+ require_relative 'lib/html/proofer/unrendered/markdown/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "html-proofer-unrendered-markdown"
5
+ spec.version = Html::Proofer::Unrendered::Markdown::VERSION
6
+ spec.authors = ["Daniel Granerud"]
7
+ spec.email = ["daniel.granerud@payex.com"]
8
+
9
+ spec.summary = "Adds extra validation to rendered markdown"
10
+ spec.homepage = "https://github.com/SwedbankPay/html-proofer-unrendered-markdown"
11
+ spec.license = "MIT"
12
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
13
+
14
+ spec.metadata["homepage_uri"] = spec.homepage
15
+ spec.metadata["source_code_uri"] = spec.homepage
16
+
17
+ # Specify which files should be added to the gem when it is released.
18
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
19
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
20
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
21
+ end
22
+ spec.bindir = "exe"
23
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
24
+ spec.require_paths = ["lib"]
25
+
26
+ spec.add_development_dependency "bundler", "~> 2.1.4"
27
+ spec.add_development_dependency "rake", "~> 12.3.1"
28
+ spec.add_runtime_dependency 'html-proofer', '~> 3.0', '>= 3.15.1'
29
+ spec.add_development_dependency 'rspec', '~> 3.5', '>= 3.5.0'
30
+ spec.add_development_dependency 'vcr', '~> 3.0', '>= 3.0.3'
31
+ end
@@ -0,0 +1,10 @@
1
+ require "html/proofer/unrendered/markdown/version"
2
+ require_relative "unrendered-link-checker"
3
+
4
+ module Html
5
+ module Proofer
6
+ module Unerendered
7
+ class Error < StandardError; end
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ module Html
2
+ module Proofer
3
+ module Unrendered
4
+ module Markdown
5
+ @version = ENV['GEM_VERSION'] || '0.0.1-INVALID'
6
+ VERSION = @version
7
+ end
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ class Chercker < ::HTMLProofer::Check
2
+ def run
3
+ return unless @options[:check_unrendered_link]
4
+ @html.xpath("//*[text()[contains(.,'][')]]").each do |node|
5
+ line = node.line
6
+ content = node.to_s
7
+ add_issue("Contains unrendered link ][! #{content}", line: line)
8
+ end
9
+ end
10
+ end
metadata ADDED
@@ -0,0 +1,149 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: html-proofer-unrendered-markdown
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.3
5
+ platform: ruby
6
+ authors:
7
+ - Daniel Granerud
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-05-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 2.1.4
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 2.1.4
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 12.3.1
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 12.3.1
41
+ - !ruby/object:Gem::Dependency
42
+ name: html-proofer
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: 3.15.1
51
+ type: :runtime
52
+ prerelease: false
53
+ version_requirements: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - "~>"
56
+ - !ruby/object:Gem::Version
57
+ version: '3.0'
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: 3.15.1
61
+ - !ruby/object:Gem::Dependency
62
+ name: rspec
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: 3.5.0
68
+ - - "~>"
69
+ - !ruby/object:Gem::Version
70
+ version: '3.5'
71
+ type: :development
72
+ prerelease: false
73
+ version_requirements: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: 3.5.0
78
+ - - "~>"
79
+ - !ruby/object:Gem::Version
80
+ version: '3.5'
81
+ - !ruby/object:Gem::Dependency
82
+ name: vcr
83
+ requirement: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - "~>"
86
+ - !ruby/object:Gem::Version
87
+ version: '3.0'
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: 3.0.3
91
+ type: :development
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - "~>"
96
+ - !ruby/object:Gem::Version
97
+ version: '3.0'
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: 3.0.3
101
+ description:
102
+ email:
103
+ - daniel.granerud@payex.com
104
+ executables: []
105
+ extensions: []
106
+ extra_rdoc_files: []
107
+ files:
108
+ - ".docker/Dockerfile"
109
+ - ".github/workflows/ruby_publish.yml"
110
+ - ".gitignore"
111
+ - CODE_OF_CONDUCT.md
112
+ - Gemfile
113
+ - Gemfile.lock
114
+ - LICENSE.txt
115
+ - README.md
116
+ - Rakefile
117
+ - bin/console
118
+ - bin/setup
119
+ - docker-compose.yml
120
+ - html-proofer-unrendered-markdown.gemspec
121
+ - lib/html-proofer-unrendered-markdown.rb
122
+ - lib/html/proofer/unrendered/markdown/version.rb
123
+ - lib/unrendered-link-checker.rb
124
+ homepage: https://github.com/SwedbankPay/html-proofer-unrendered-markdown
125
+ licenses:
126
+ - MIT
127
+ metadata:
128
+ homepage_uri: https://github.com/SwedbankPay/html-proofer-unrendered-markdown
129
+ source_code_uri: https://github.com/SwedbankPay/html-proofer-unrendered-markdown
130
+ post_install_message:
131
+ rdoc_options: []
132
+ require_paths:
133
+ - lib
134
+ required_ruby_version: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: 2.3.0
139
+ required_rubygems_version: !ruby/object:Gem::Requirement
140
+ requirements:
141
+ - - ">="
142
+ - !ruby/object:Gem::Version
143
+ version: '0'
144
+ requirements: []
145
+ rubygems_version: 3.0.3
146
+ signing_key:
147
+ specification_version: 4
148
+ summary: Adds extra validation to rendered markdown
149
+ test_files: []