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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a1ba604ffff07a62d9a4d07e6e56ad6865d8752a727032e13e46cb08404599cd
4
- data.tar.gz: 656f0f6c43e6d766f1c7bb6b3df110efae719b8e74e9e9877b1f0908e698db5a
3
+ metadata.gz: 1204730ec292962c6e56006c41f2523609ca219934064613243e3e5b39100dc2
4
+ data.tar.gz: 66e8ad922dccac4cd4cc0760fcc64814c553f93363d2bb3ec25122617366eb77
5
5
  SHA512:
6
- metadata.gz: 459e633a68b4a588370cbe7b18ff64742d99f4d73a59afa5e708f62cf5bd466b25192b1e23f8592e514a7045a27b3f28e5377e119f540a168cba0774a3f11198
7
- data.tar.gz: e8c0f800b34e8704f6ffe385a047108eb33d6a7da993e4b7be6e70aebdee5161285f0022d936cadeafc46a03683aeb56cd511295d05102fdd6d87c8a77abda18
6
+ metadata.gz: 355a58f58e8221968bde3e38c230e47df2d2be06c0131083b3f664c6c3c9c8dd55c44f0bf874efdd387748fcd2e5702c619de6faa2c76d21632e0e6bca93713d
7
+ data.tar.gz: 62263d9574edd8118d21c91ed3d21edf28928c59436f6ff5268e549b8834f7d9c73aa721a6618b8ef4114c84e9632ea5fc5a6a9892cdb71966831b53c64d6c0b
@@ -0,0 +1,16 @@
1
+ version: 2
2
+
3
+ updates:
4
+ - package-ecosystem: bundler
5
+ directory: /
6
+ schedule:
7
+ interval: weekly
8
+ reviewers:
9
+ - haines
10
+
11
+ - package-ecosystem: github-actions
12
+ directory: /
13
+ schedule:
14
+ interval: weekly
15
+ reviewers:
16
+ - haines
@@ -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@v1
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
@@ -1,3 +1,7 @@
1
+ require:
2
+ - rubocop-minitest
3
+ - rubocop-rake
4
+
1
5
  AllCops:
2
6
  NewCops: enable
3
7
  TargetRubyVersion: 2.5
@@ -1 +1 @@
1
- 2.7.1
1
+ 3.0.0
@@ -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.3.0...HEAD
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
@@ -9,4 +9,6 @@ gem "minitest"
9
9
  gem "pry"
10
10
  gem "rake"
11
11
  gem "rubocop"
12
+ gem "rubocop-minitest"
13
+ gem "rubocop-rake"
12
14
  gem "yard"
@@ -1,46 +1,53 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- yard-relative_markdown_links (0.3.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.1)
10
+ ast (2.4.2)
11
11
  coderay (1.1.3)
12
12
  method_source (1.0.0)
13
- mini_portile2 (2.4.0)
14
- minitest (5.14.1)
15
- nokogiri (1.10.10)
16
- mini_portile2 (~> 2.4.0)
17
- parallel (1.19.2)
18
- parser (2.7.1.4)
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.1)
25
- regexp_parser (1.7.1)
26
+ rake (13.0.3)
27
+ regexp_parser (2.0.3)
26
28
  rexml (3.2.4)
27
- rubocop (0.88.0)
29
+ rubocop (1.9.0)
28
30
  parallel (~> 1.10)
29
- parser (>= 2.7.1.1)
31
+ parser (>= 3.0.0.0)
30
32
  rainbow (>= 2.2.2, < 4.0)
31
- regexp_parser (>= 1.7)
33
+ regexp_parser (>= 1.8, < 3.0)
32
34
  rexml
33
- rubocop-ast (>= 0.1.0, < 1.0)
35
+ rubocop-ast (>= 1.2.0, < 2.0)
34
36
  ruby-progressbar (~> 1.7)
35
- unicode-display_width (>= 1.4.0, < 2.0)
36
- rubocop-ast (0.2.0)
37
- parser (>= 2.7.0.1)
38
- ruby-progressbar (1.10.1)
39
- unicode-display_width (1.7.0)
40
- yard (0.9.25)
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
- ruby
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.1.4
64
+ 2.2.7
@@ -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.3.0"
6
+ VERSION = "0.4.0"
7
7
  end
8
8
  end
@@ -26,5 +26,7 @@ Gem::Specification.new do |spec|
26
26
  spec.metadata["source_code_uri"] = spec.homepage
27
27
  spec.metadata["yard.run"] = "yri"
28
28
 
29
+ spec.required_ruby_version = ">= 2.5"
30
+
29
31
  spec.add_dependency "nokogiri", "~> 1.8"
30
32
  end
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.3.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: 2020-07-26 00:00:00.000000000 Z
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: '0'
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.1.2
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