html2pdf 0.0.3 → 0.0.4
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/.gitignore +0 -1
- data/Changelogs.md +31 -0
- data/README.md +4 -20
- data/html2pdf.gemspec +2 -4
- data/lib/html2pdf/version.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 786a7dfccb35d4e0adb5a1a27fef844ce2ee6751
|
|
4
|
+
data.tar.gz: afa1e951177896697648d5202d281d31472fd86a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 715eaff078aca6ea67cf3662bc1832e34dfc4743278b2d7d1e1dde44b3598f50ac45637cea65aadf5991470e652e1cf150b9bb592ea37753b7b647341dff001a
|
|
7
|
+
data.tar.gz: 8bafc02536cd226aa110c351f1ea0d6246a9eeb65a439fa3df3190ef7eda6daaaea18cae5ea2f14badbb951a05418b0a0013cb80ed1d74081058171052f119ba
|
data/.gitignore
CHANGED
data/Changelogs.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
### Html2Pdf - Changelogs
|
|
2
|
+
|
|
3
|
+
#### 0.0.4
|
|
4
|
+
|
|
5
|
+
- Update [agile_utils][] to 0.0.9
|
|
6
|
+
- Update [code_lister][] to 0.0.8
|
|
7
|
+
- Add links to [gemnasium][] and [codeclimate][]
|
|
8
|
+
- Add Changelogs.md
|
|
9
|
+
|
|
10
|
+
#### 0.0.3
|
|
11
|
+
|
|
12
|
+
- Update [agile_utils][] to 0.0.8
|
|
13
|
+
- Update [code_lister][] to 0.0.7
|
|
14
|
+
- Compress generated pdf files to one single tar.gzip file
|
|
15
|
+
- Fix bug in softwares_installed? method
|
|
16
|
+
- Remove the TODOs.md
|
|
17
|
+
|
|
18
|
+
#### 0.0.2
|
|
19
|
+
|
|
20
|
+
- Use [agile_utils][] to 0.0.5
|
|
21
|
+
|
|
22
|
+
- Fix minor error when using --version
|
|
23
|
+
|
|
24
|
+
#### 0.0.1
|
|
25
|
+
|
|
26
|
+
- Initial release
|
|
27
|
+
|
|
28
|
+
[agile_utils]: https://github.com/agilecreativity/agile_utils
|
|
29
|
+
[code_lister]: https://github.com/agilecreativity/code_lister
|
|
30
|
+
[gemnasium]: https://gemnasium.com/agilecreativity/html2pdf
|
|
31
|
+
[codeclimate]: https://codeclimate.com/github/agilecreativity/html2pdf
|
data/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
## Html2Pdf
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/html2pdf)
|
|
4
|
+
[](https://gemnasium.com/agilecreativity/html2pdf)
|
|
5
|
+
[](https://codeclimate.com/github/agilecreativity/html2pdf)
|
|
4
6
|
|
|
5
7
|
Convert multiple html or xhtml files to pdfs using the power of
|
|
6
8
|
[Ghostscript][] and [Wkhtmltopdf][].
|
|
@@ -93,26 +95,6 @@ the pdf version of it.
|
|
|
93
95
|
|
|
94
96
|
- Then combine the generated pdf files using [pdfs2pdf][] gem to produce one pdf file
|
|
95
97
|
|
|
96
|
-
### Changelogs
|
|
97
|
-
|
|
98
|
-
#### 0.0.3
|
|
99
|
-
|
|
100
|
-
- Update [agile_utils][] to 0.0.8
|
|
101
|
-
- Update [code_lister][] to 0.0.7
|
|
102
|
-
- Compress generated pdf files to one single tar.gzip file
|
|
103
|
-
- Fix bug in softwares_installed? method
|
|
104
|
-
- Remove the TODOs.md
|
|
105
|
-
|
|
106
|
-
#### 0.0.2
|
|
107
|
-
|
|
108
|
-
- Use [agile_utils][] to 0.0.5
|
|
109
|
-
|
|
110
|
-
- Fix minor error when using --version
|
|
111
|
-
|
|
112
|
-
#### 0.0.1
|
|
113
|
-
|
|
114
|
-
- Initial release
|
|
115
|
-
|
|
116
98
|
### Contributing
|
|
117
99
|
|
|
118
100
|
1. Fork it ( http://github.com/<my-github-username>/code_exporter/fork )
|
|
@@ -127,3 +109,5 @@ the pdf version of it.
|
|
|
127
109
|
[code_lister]: https://github.com/agilecreativity/code_lister
|
|
128
110
|
[vim_printer]: https://github.com/agilecreativity/vim_printer
|
|
129
111
|
[pdfs2pdf]: https://github.com/agilecreativity/pdfs2pdf
|
|
112
|
+
[gemnasium]: https://gemnasium.com/agilecreativity/html2pdf
|
|
113
|
+
[codeclimate]: https://codeclimate.com/github/agilecreativity/html2pdf
|
data/html2pdf.gemspec
CHANGED
|
@@ -16,11 +16,9 @@ Gem::Specification.new do |spec|
|
|
|
16
16
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
17
17
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
18
18
|
spec.require_paths = ["lib"]
|
|
19
|
-
|
|
20
19
|
spec.add_runtime_dependency 'thor'
|
|
21
|
-
spec.add_runtime_dependency 'agile_utils', '~> 0.0.
|
|
22
|
-
spec.add_runtime_dependency 'code_lister', '~> 0.0.
|
|
23
|
-
|
|
20
|
+
spec.add_runtime_dependency 'agile_utils', '~> 0.0.9'
|
|
21
|
+
spec.add_runtime_dependency 'code_lister', '~> 0.0.8'
|
|
24
22
|
spec.add_development_dependency 'awesome_print', '~> 1.2'
|
|
25
23
|
spec.add_development_dependency 'bundler', '~> 1.5'
|
|
26
24
|
spec.add_development_dependency 'gem-ctags', '~> 1.0'
|
data/lib/html2pdf/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: html2pdf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Burin Choomnuan
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-05-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -30,28 +30,28 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.0.
|
|
33
|
+
version: 0.0.9
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 0.0.
|
|
40
|
+
version: 0.0.9
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: code_lister
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 0.0.
|
|
47
|
+
version: 0.0.8
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 0.0.
|
|
54
|
+
version: 0.0.8
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: awesome_print
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -231,6 +231,7 @@ files:
|
|
|
231
231
|
- ".gitignore"
|
|
232
232
|
- ".rubocop.yml"
|
|
233
233
|
- ".ruby-version"
|
|
234
|
+
- Changelogs.md
|
|
234
235
|
- Gemfile
|
|
235
236
|
- Guardfile
|
|
236
237
|
- LICENSE.txt
|