rdoc_link_checker 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: 3a9ffa7ca1ef044fdc73a544cd7fb31dce91b0fc0a2f0937d071a8ce1d033ac6
4
- data.tar.gz: 7e93a01cbb75c2db88050e1ab10aee8e549316d4ae7e06ab80dec38e3af5f9e6
3
+ metadata.gz: cde4b6bb3a511ccee4b20f792707c85c8705b8a828754909f63f88c533d5efe4
4
+ data.tar.gz: ff3dfefb26e94258e32a2c5f19bc0b894591611a4dff9612741e34e641ca8130
5
5
  SHA512:
6
- metadata.gz: ffd501ff86f9bda291348d6a9aa0a982a4ad1b7b5020d963c69a388343a34427b2e9f5282732da8249b1fc2604482938dd96a610db236cd537f37f9abee7d075
7
- data.tar.gz: 5ee92b068a8cb0feea303e4bf8f669bac3f587086a213cd9324cdd6d66e07c22bf6639c42d5119e25d63ad312bac3211bc2675424fec7c4ad76b0ca1f4770c32
6
+ metadata.gz: c577bf0a97429715c606ee45986258a77bf5028a5e2af47f76e9e2776c5cf66c52045fbc6d1e28fc940e13c178b13ba5914aa6b952d2e24d13b6a36147675d8b
7
+ data.tar.gz: 9bdcfb203468e9de9d0f94d02a2e0e4ac6140e1e33745012272c36afd469631204a9da410061383a7b7be434df08aaed48c5553bbb6b7578fae115a8fb41f1ec
data/README.md CHANGED
@@ -12,24 +12,7 @@ Reports a link as broken if:
12
12
 
13
13
  Note that some browsers are forgiving, and will open the target
14
14
  page at a link target similar to the given fragment;
15
- for example, fragment ```bar``` may be opened at an element
15
+ for example, fragment ```#bar``` may be opened at an element
16
16
  with id ```foobar```.
17
17
 
18
- ```
19
- Usage:
20
- rdoc_link_checker html_dirpath options
21
-
22
- The argument is the path to a directory containing a tree
23
- of RDoc-generated HTML files, such as those generated by command
24
-
25
- rdoc --visibility=private --op html . # Note the trailing dot.
26
-
27
- Options:
28
- --onsite_only Check link targets only on pages in the file tree at <html_dirpath>,
29
- and not those on other local pages or those on the web.
30
- --no_toc Do not check links on the TOC page (table_of_contents.html).
31
- --version Print the version and exit.
32
- --help Print this help and exit.
33
-
34
- The output is file <html_dirpath>/Report.htm, which reports broken links.
35
- ```
18
+ See the [help text](doc/help.txt).
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class RDocLinkChecker
4
- VERSION = "0.3.0"
4
+ VERSION = "0.4.0"
5
5
  end
@@ -5,22 +5,12 @@ require 'rdoc_link_checker/version'
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'rdoc_link_checker'
7
7
  spec.version = RDocLinkChecker::VERSION
8
- spec.authors = ['burdettelamar']
8
+ spec.authors = ['Burdette Lamar']
9
9
  spec.email = ['burdettelamar@yahoo.com']
10
10
  spec.summary = 'Tool to check links in RDoc-generated HTML files.'
11
11
  spec.homepage = 'https://github.com/BurdetteLamar/rdoc_link_checker'
12
12
  spec.license = 'MIT'
13
13
 
14
- # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
15
- # to allow pushing to a single host or delete this section to allow pushing to any host.
16
- # if spec.respond_to?(:metadata)
17
- # spec.metadata['allowed_push_host'] = 'https://rubygems.org/'
18
- # spec.metadata['allowed_push_host'] = "http://rubygems.org"
19
- # else
20
- # raise 'RubyGems 2.0 or newer is required to protect against ' \
21
- # 'public gem pushes.'
22
- # end
23
-
24
14
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
25
15
  f.match(%r{^(test)/})
26
16
  end
@@ -28,6 +18,12 @@ Gem::Specification.new do |spec|
28
18
  spec.executables = ['rdoc_link_checker']
29
19
  spec.require_paths = ['lib']
30
20
 
21
+ spec.metadata = {
22
+ 'bug_tracker_uri' => 'https://github.com/BurdetteLamar/rdoc_link_checker/issues',
23
+ 'documentation_uri' => 'https://github.com/BurdetteLamar/rdoc_link_checker/blob/dev/README.md',
24
+ 'homepage_uri' => 'https://github.com/BurdetteLamar/rdoc_link_checker',
25
+ }
26
+
31
27
  spec.add_development_dependency 'bundler', '~> 1.14'
32
28
  spec.add_development_dependency 'rake', '~> 12.3.2'
33
29
  spec.add_development_dependency 'minitest', '~> 5.0'
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rdoc_link_checker
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
- - burdettelamar
7
+ - Burdette Lamar
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
@@ -73,7 +73,10 @@ files:
73
73
  homepage: https://github.com/BurdetteLamar/rdoc_link_checker
74
74
  licenses:
75
75
  - MIT
76
- metadata: {}
76
+ metadata:
77
+ bug_tracker_uri: https://github.com/BurdetteLamar/rdoc_link_checker/issues
78
+ documentation_uri: https://github.com/BurdetteLamar/rdoc_link_checker/blob/dev/README.md
79
+ homepage_uri: https://github.com/BurdetteLamar/rdoc_link_checker
77
80
  post_install_message:
78
81
  rdoc_options: []
79
82
  require_paths: