yard-relative_markdown_links 0.3.0 → 0.4.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.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +16 -0
- data/.github/workflows/pull-request.yml +3 -2
- data/.rubocop.yml +4 -0
- data/.ruby-version +1 -1
- data/CHANGELOG.md +8 -1
- data/Gemfile +2 -0
- data/Gemfile.lock +31 -22
- data/lib/yard/relative_markdown_links/version.rb +1 -1
- data/yard-relative_markdown_links.gemspec +2 -0
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1204730ec292962c6e56006c41f2523609ca219934064613243e3e5b39100dc2
|
|
4
|
+
data.tar.gz: 66e8ad922dccac4cd4cc0760fcc64814c553f93363d2bb3ec25122617366eb77
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 355a58f58e8221968bde3e38c230e47df2d2be06c0131083b3f664c6c3c9c8dd55c44f0bf874efdd387748fcd2e5702c619de6faa2c76d21632e0e6bca93713d
|
|
7
|
+
data.tar.gz: 62263d9574edd8118d21c91ed3d21edf28928c59436f6ff5268e549b8834f7d9c73aa721a6618b8ef4114c84e9632ea5fc5a6a9892cdb71966831b53c64d6c0b
|
|
@@ -11,6 +11,7 @@ jobs:
|
|
|
11
11
|
- "2.5"
|
|
12
12
|
- "2.6"
|
|
13
13
|
- "2.7"
|
|
14
|
+
- "3.0"
|
|
14
15
|
|
|
15
16
|
name: Ruby ${{ matrix.ruby }}
|
|
16
17
|
|
|
@@ -24,7 +25,7 @@ jobs:
|
|
|
24
25
|
|
|
25
26
|
steps:
|
|
26
27
|
- name: Install dependencies
|
|
27
|
-
run: apk add build-base git
|
|
28
|
+
run: apk add build-base git tar
|
|
28
29
|
|
|
29
30
|
- name: Check out source code
|
|
30
31
|
uses: actions/checkout@v2
|
|
@@ -42,7 +43,7 @@ jobs:
|
|
|
42
43
|
"${RUBY_VERSION}"
|
|
43
44
|
|
|
44
45
|
- name: Cache gems
|
|
45
|
-
uses: actions/cache@
|
|
46
|
+
uses: actions/cache@v2
|
|
46
47
|
with:
|
|
47
48
|
key: ${{ steps.cache-key.outputs.cache-key }}-gems-${{ hashFiles('Gemfile.lock') }}
|
|
48
49
|
path: vendor/bundle
|
data/.rubocop.yml
CHANGED
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
3.0.0
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
|
+
No notable changes.
|
|
10
|
+
|
|
11
|
+
## [0.4.0] - 2021-01-29
|
|
12
|
+
### Changed
|
|
13
|
+
* Require Ruby ≥ 2.5 ([#40](https://github.com/haines/yard-relative_markdown_links/pull/40))
|
|
14
|
+
* Test against Ruby 3.0 ([#41](https://github.com/haines/yard-relative_markdown_links/pull/41))
|
|
9
15
|
|
|
10
16
|
## [0.3.0] - 2020-07-26
|
|
11
17
|
### Added
|
|
@@ -27,7 +33,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
27
33
|
### Added
|
|
28
34
|
- A YARD plugin to allow relative links between Markdown files ([#1](https://github.com/haines/yard-relative_markdown_links/pull/1))
|
|
29
35
|
|
|
30
|
-
[Unreleased]: https://github.com/haines/yard-relative_markdown_links/compare/v0.
|
|
36
|
+
[Unreleased]: https://github.com/haines/yard-relative_markdown_links/compare/v0.4.0...HEAD
|
|
37
|
+
[0.4.0]: https://github.com/haines/yard-relative_markdown_links/compare/v0.3.0...v0.4.0
|
|
31
38
|
[0.3.0]: https://github.com/haines/yard-relative_markdown_links/compare/v0.2.0...v0.3.0
|
|
32
39
|
[0.2.0]: https://github.com/haines/yard-relative_markdown_links/compare/v0.1.2...v0.2.0
|
|
33
40
|
[0.1.2]: https://github.com/haines/yard-relative_markdown_links/compare/v0.1.1...v0.1.2
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,46 +1,53 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
yard-relative_markdown_links (0.
|
|
4
|
+
yard-relative_markdown_links (0.4.0)
|
|
5
5
|
nokogiri (~> 1.8)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
ast (2.4.
|
|
10
|
+
ast (2.4.2)
|
|
11
11
|
coderay (1.1.3)
|
|
12
12
|
method_source (1.0.0)
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
13
|
+
minitest (5.14.3)
|
|
14
|
+
nokogiri (1.11.1-x86_64-darwin)
|
|
15
|
+
racc (~> 1.4)
|
|
16
|
+
nokogiri (1.11.1-x86_64-linux)
|
|
17
|
+
racc (~> 1.4)
|
|
18
|
+
parallel (1.20.1)
|
|
19
|
+
parser (3.0.0.0)
|
|
19
20
|
ast (~> 2.4.1)
|
|
20
21
|
pry (0.13.1)
|
|
21
22
|
coderay (~> 1.1)
|
|
22
23
|
method_source (~> 1.0)
|
|
24
|
+
racc (1.5.2)
|
|
23
25
|
rainbow (3.0.0)
|
|
24
|
-
rake (13.0.
|
|
25
|
-
regexp_parser (
|
|
26
|
+
rake (13.0.3)
|
|
27
|
+
regexp_parser (2.0.3)
|
|
26
28
|
rexml (3.2.4)
|
|
27
|
-
rubocop (
|
|
29
|
+
rubocop (1.9.0)
|
|
28
30
|
parallel (~> 1.10)
|
|
29
|
-
parser (>=
|
|
31
|
+
parser (>= 3.0.0.0)
|
|
30
32
|
rainbow (>= 2.2.2, < 4.0)
|
|
31
|
-
regexp_parser (>= 1.
|
|
33
|
+
regexp_parser (>= 1.8, < 3.0)
|
|
32
34
|
rexml
|
|
33
|
-
rubocop-ast (>=
|
|
35
|
+
rubocop-ast (>= 1.2.0, < 2.0)
|
|
34
36
|
ruby-progressbar (~> 1.7)
|
|
35
|
-
unicode-display_width (>= 1.4.0, <
|
|
36
|
-
rubocop-ast (
|
|
37
|
-
parser (>= 2.7.
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
37
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
|
38
|
+
rubocop-ast (1.4.1)
|
|
39
|
+
parser (>= 2.7.1.5)
|
|
40
|
+
rubocop-minitest (0.10.3)
|
|
41
|
+
rubocop (>= 0.87, < 2.0)
|
|
42
|
+
rubocop-rake (0.5.1)
|
|
43
|
+
rubocop
|
|
44
|
+
ruby-progressbar (1.11.0)
|
|
45
|
+
unicode-display_width (2.0.0)
|
|
46
|
+
yard (0.9.26)
|
|
41
47
|
|
|
42
48
|
PLATFORMS
|
|
43
|
-
|
|
49
|
+
x86_64-darwin-20
|
|
50
|
+
x86_64-linux
|
|
44
51
|
|
|
45
52
|
DEPENDENCIES
|
|
46
53
|
bundler
|
|
@@ -48,8 +55,10 @@ DEPENDENCIES
|
|
|
48
55
|
pry
|
|
49
56
|
rake
|
|
50
57
|
rubocop
|
|
58
|
+
rubocop-minitest
|
|
59
|
+
rubocop-rake
|
|
51
60
|
yard
|
|
52
61
|
yard-relative_markdown_links!
|
|
53
62
|
|
|
54
63
|
BUNDLED WITH
|
|
55
|
-
2.
|
|
64
|
+
2.2.7
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yard-relative_markdown_links
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Haines
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-01-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|
|
@@ -31,6 +31,7 @@ executables: []
|
|
|
31
31
|
extensions: []
|
|
32
32
|
extra_rdoc_files: []
|
|
33
33
|
files:
|
|
34
|
+
- ".github/dependabot.yml"
|
|
34
35
|
- ".github/workflows/pull-request.yml"
|
|
35
36
|
- ".gitignore"
|
|
36
37
|
- ".rubocop.yml"
|
|
@@ -70,14 +71,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
70
71
|
requirements:
|
|
71
72
|
- - ">="
|
|
72
73
|
- !ruby/object:Gem::Version
|
|
73
|
-
version: '
|
|
74
|
+
version: '2.5'
|
|
74
75
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
76
|
requirements:
|
|
76
77
|
- - ">="
|
|
77
78
|
- !ruby/object:Gem::Version
|
|
78
79
|
version: '0'
|
|
79
80
|
requirements: []
|
|
80
|
-
rubygems_version: 3.
|
|
81
|
+
rubygems_version: 3.2.7
|
|
81
82
|
signing_key:
|
|
82
83
|
specification_version: 4
|
|
83
84
|
summary: A YARD plugin to allow relative links between Markdown files
|