html2pdf 0.2.0 → 0.2.1

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: b1d31309eb1f852b8a396dd153d6b6697a034679
4
- data.tar.gz: 5a708b22e1b52d234570b14b85a126ff591f460c
3
+ metadata.gz: 27225042528ba1e4aa802fdcf1b549a76b75aad3
4
+ data.tar.gz: c2e444158b41f376544954613e97db0363f995a9
5
5
  SHA512:
6
- metadata.gz: 863766501f19696521a4dc8b0789183d98acef82ed4e177f6c648ad79c04d5713eadda7eac98f33182be3cf3647386eb2376bed7615142238762918f0179ea13
7
- data.tar.gz: c01e9d70916d468be29f049996d8bba2f35b43dd846bb3ae99b4707ea4d5ec9318c4aed8f7457540f0ee503b73e49a4554703958fd807e4f0de0cfbab1002d27
6
+ metadata.gz: 9a34a5bf05f35149ddbaac60fc992c6d98bdcba844a199056fda3cee341b510cc0e3be50057ae955d10a6a45f9f6eaabbdf4198cceecb37cf86dbba803be8842
7
+ data.tar.gz: 267803bbba18b8734a9c589c4c54a47de518e47ef1c7f0092eeeb07505a693c4bcf5d59fad80a211e07a752fd9f9880ef6484f63a8235a1d1a907a6082b94bf7
data/CHANGELOG.md CHANGED
@@ -1,9 +1,13 @@
1
1
  ### Changelogs for html2pdf
2
2
 
3
+ #### 0.2.1
4
+
5
+ - Make ruby 2.1.0+ a mandatory
6
+
3
7
  #### 0.2.0
4
8
 
5
9
  - Make use of refinement instead of monkeypatching gem
6
- - Only support for 2.0.x+
10
+ - Only support for 2.1.x+
7
11
  - Misc cleanup
8
12
 
9
13
  #### 0.1.7
data/html2pdf.gemspec CHANGED
@@ -11,6 +11,7 @@ Gem::Specification.new do |spec|
11
11
  spec.summary = %q(Bulk export list of html or xhtml files to pdfs with 'wkhtmltopdf')
12
12
  spec.description = %q(Export list of html or xhtml files to pdfs with 'wkhtmltopdf')
13
13
  spec.homepage = "https://github.com/agilecreativity/html2pdf"
14
+ spec.required_ruby_version = ">= 2.1.0"
14
15
  spec.license = "MIT"
15
16
  spec.files = Dir.glob("{bin,lib,config}/**/*") + %w[Gemfile
16
17
  Rakefile
@@ -23,9 +24,11 @@ Gem::Specification.new do |spec|
23
24
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
24
25
  spec.test_files = Dir.glob("{test}/**/*")
25
26
  spec.require_paths = ["lib"]
26
- spec.add_runtime_dependency "thor", "~> 0.19"
27
- spec.add_runtime_dependency "agile_utils", "~> 0.2.0"
28
- spec.add_runtime_dependency "code_lister", "~> 0.2.0"
27
+
28
+ spec.add_runtime_dependency "thor", "~> 0.19.1"
29
+ spec.add_runtime_dependency "agile_utils", "~> 0.2.1"
30
+ spec.add_runtime_dependency "code_lister", "~> 0.2.1"
31
+
29
32
  spec.add_development_dependency "awesome_print", "~> 1.2.0"
30
33
  spec.add_development_dependency "bundler", "~> 1.6.2"
31
34
  spec.add_development_dependency "gem-ctags", "~> 1.0.6"
@@ -1,3 +1,3 @@
1
1
  module Html2Pdf
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
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.2.0
4
+ version: 0.2.1
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-07-30 00:00:00.000000000 Z
11
+ date: 2014-07-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -16,42 +16,42 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.19'
19
+ version: 0.19.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0.19'
26
+ version: 0.19.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: agile_utils
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.2.0
33
+ version: 0.2.1
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.2.0
40
+ version: 0.2.1
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.2.0
47
+ version: 0.2.1
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.2.0
54
+ version: 0.2.1
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: awesome_print
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -255,7 +255,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
255
255
  requirements:
256
256
  - - ">="
257
257
  - !ruby/object:Gem::Version
258
- version: '0'
258
+ version: 2.1.0
259
259
  required_rubygems_version: !ruby/object:Gem::Requirement
260
260
  requirements:
261
261
  - - ">="
@@ -268,18 +268,18 @@ signing_key:
268
268
  specification_version: 4
269
269
  summary: Bulk export list of html or xhtml files to pdfs with 'wkhtmltopdf'
270
270
  test_files:
271
- - test/fixtures/samples/demo1_xxx.rb
271
+ - test/lib/html2pdf/test_html2pdf.rb
272
+ - test/test_helper.rb
272
273
  - test/fixtures/samples/demo1_xxx.rb.xhtml
273
- - test/fixtures/samples/demo1_xxx.rb.xhtml.pdf
274
274
  - test/fixtures/samples/demo2_xxx.rb
275
- - test/fixtures/samples/demo2_xxx.rb.xhtml
276
275
  - test/fixtures/samples/demo2_xxx.rb.xhtml.pdf
277
- - test/fixtures/samples/sub_dir/demo3_xxx.rb
276
+ - test/fixtures/samples/demo2_xxx.rb.xhtml
278
277
  - test/fixtures/samples/sub_dir/demo3_xxx.rb.xhtml
278
+ - test/fixtures/samples/sub_dir/demo4_xxx.rb.xhtml.pdf
279
279
  - test/fixtures/samples/sub_dir/demo3_xxx.rb.xhtml.pdf
280
- - test/fixtures/samples/sub_dir/demo4_xxx.rb
281
280
  - test/fixtures/samples/sub_dir/demo4_xxx.rb.xhtml
282
- - test/fixtures/samples/sub_dir/demo4_xxx.rb.xhtml.pdf
283
- - test/lib/html2pdf/test_html2pdf.rb
284
- - test/test_helper.rb
281
+ - test/fixtures/samples/sub_dir/demo4_xxx.rb
282
+ - test/fixtures/samples/sub_dir/demo3_xxx.rb
283
+ - test/fixtures/samples/demo1_xxx.rb
284
+ - test/fixtures/samples/demo1_xxx.rb.xhtml.pdf
285
285
  has_rdoc: