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 +4 -4
- data/README.md +2 -19
- data/lib/rdoc_link_checker/version.rb +1 -1
- data/rdoc_link_checker.gemspec +7 -11
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cde4b6bb3a511ccee4b20f792707c85c8705b8a828754909f63f88c533d5efe4
|
4
|
+
data.tar.gz: ff3dfefb26e94258e32a2c5f19bc0b894591611a4dff9612741e34e641ca8130
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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).
|
data/rdoc_link_checker.gemspec
CHANGED
@@ -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 = ['
|
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.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
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:
|