pdf2htmlex 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/CHANGELOG.md +16 -0
- data/lib/pdf2htmlex/version.rb +1 -1
- data/pdf2htmlex.gemspec +2 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 561a4bf94957a47e8e7ea6aebad61f5d96195005aa1800ac470aaa30e10f8fb5
|
4
|
+
data.tar.gz: 51c31acbea62b2e77370d6e7c9c02424d29dafa9c1459bfac8e22359032b8a06
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1ff68296f25688fc571298c6a7c32c77c0ac1b38235cf4744ad66f5e8ea2243e7a92f22f6c48fe28a0f7f937fdcb76c1f86cda41e7c61490f9630c4ef868f6e
|
7
|
+
data.tar.gz: ad0de516349860904cc8163e6e5dd2445390efe413e27985bd6c1225b916860ad3cd3fd08445912d9c588ccea3f0debeaf1c0c985798d6bcce232384b44524e4
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -0,0 +1,16 @@
|
|
1
|
+
# Changelog
|
2
|
+
## [0.1.1] - 2021-04-09
|
3
|
+
|
4
|
+
### Added
|
5
|
+
|
6
|
+
- Include documentation url the gemspec
|
7
|
+
- fix broken CHANGELOG link of gemspec
|
8
|
+
|
9
|
+
## [0.1.0] - 2021-04-09
|
10
|
+
|
11
|
+
### Added
|
12
|
+
|
13
|
+
- Basic project structure to make the `Pdf2htmlex.convert()` function work
|
14
|
+
|
15
|
+
[0.1.1]: https://github.com/marcosgz/pdf2htmlex/releases/compare/v0.1.0...v0.1.1
|
16
|
+
[0.1.0]: https://github.com/marcosgz/pdf2htmlex/releases/tag/v0.1.0
|
data/lib/pdf2htmlex/version.rb
CHANGED
data/pdf2htmlex.gemspec
CHANGED
@@ -18,7 +18,8 @@ Gem::Specification.new do |spec|
|
|
18
18
|
|
19
19
|
spec.metadata['homepage_uri'] = spec.homepage
|
20
20
|
spec.metadata['source_code_uri'] = 'https://github.com/marcosgz/pdf2htmlex'
|
21
|
-
spec.metadata['changelog_uri'] = 'https://github.com/marcosgz/blob/main/
|
21
|
+
spec.metadata['changelog_uri'] = 'https://github.com/marcosgz/pdf2htmlex/blob/main/CHANGELOG.md'
|
22
|
+
spec.metadata["documentation_uri"] = 'https://www.rubydoc.org/github/marcosgz/pdf2htmlex'
|
22
23
|
|
23
24
|
# Specify which files should be added to the gem when it is released.
|
24
25
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pdf2htmlex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marcos G. Zimmermann
|
@@ -54,7 +54,8 @@ metadata:
|
|
54
54
|
allowed_push_host: https://rubygems.org
|
55
55
|
homepage_uri: https://github.com/marcosgz/pdf2htmlex
|
56
56
|
source_code_uri: https://github.com/marcosgz/pdf2htmlex
|
57
|
-
changelog_uri: https://github.com/marcosgz/blob/main/
|
57
|
+
changelog_uri: https://github.com/marcosgz/pdf2htmlex/blob/main/CHANGELOG.md
|
58
|
+
documentation_uri: https://www.rubydoc.org/github/marcosgz/pdf2htmlex
|
58
59
|
post_install_message:
|
59
60
|
rdoc_options: []
|
60
61
|
require_paths:
|