html2pdf 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 19a61c7bd4f22b786d9777df4ee6c4a8e4472909
4
- data.tar.gz: 072d2a948be11cebe5db643191ef944c3c5c9b98
3
+ metadata.gz: 786a7dfccb35d4e0adb5a1a27fef844ce2ee6751
4
+ data.tar.gz: afa1e951177896697648d5202d281d31472fd86a
5
5
  SHA512:
6
- metadata.gz: 4e87aee9d33e577da87392e304044d9dcc254979029d660f6c7c791262968a37106709e067f3f5506a5dbe6fd52321e165bc7a7efd4281531a77d546d6361e65
7
- data.tar.gz: bad0571fd68a34029d11ba3a1759918a7da89f6584d53c1bc7e3c3b13a0cecf7b578f250347df7d5d63b3ebdf6231ad42939dc57b153bb44ca4dc0ab751ffb0d
6
+ metadata.gz: 715eaff078aca6ea67cf3662bc1832e34dfc4743278b2d7d1e1dde44b3598f50ac45637cea65aadf5991470e652e1cf150b9bb592ea37753b7b647341dff001a
7
+ data.tar.gz: 8bafc02536cd226aa110c351f1ea0d6246a9eeb65a439fa3df3190ef7eda6daaaea18cae5ea2f14badbb951a05418b0a0013cb80ed1d74081058171052f119ba
data/.gitignore CHANGED
@@ -20,4 +20,3 @@ tags
20
20
  # Custom ignore files
21
21
  output.tar.gz
22
22
  html2pdf-output.tar.gz
23
- changelogs.txt
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
  [![Gem Version](https://badge.fury.io/rb/html2pdf.svg)](http://badge.fury.io/rb/html2pdf)
4
+ [![Dependency Status](https://gemnasium.com/agilecreativity/html2pdf.png)](https://gemnasium.com/agilecreativity/html2pdf)
5
+ [![Code Climate](https://codeclimate.com/github/agilecreativity/html2pdf.png)](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.8'
22
- spec.add_runtime_dependency 'code_lister', '~> 0.0.7'
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'
@@ -1,3 +1,3 @@
1
1
  module Html2Pdf
2
- VERSION = '0.0.3'
2
+ VERSION = '0.0.4'
3
3
  end
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.3
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-04-28 00:00:00.000000000 Z
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.8
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.8
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.7
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.7
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