wkhtmltopdf-binary 0.12.5.4 → 0.12.6.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
  SHA256:
3
- metadata.gz: 8844ae08780f6c097410d1401ec6f528bb9750594dc10d3ff2d7f6ab936fef6e
4
- data.tar.gz: cf93a01e7ab28b9cd74b7b56865b0c716fc09f580a334f68f39be0046e87b459
3
+ metadata.gz: 71d0ab2973bc32ccfb27c2debf9f21e846db80b90ef04642393dc6bf7941b160
4
+ data.tar.gz: ffd8f69e7e4a142bc7a11fdb66e82ccb967db43ece6faffa1f6da72872e46706
5
5
  SHA512:
6
- metadata.gz: 2770523ec0fa8e3f72dad317d3e3c1c395eb5748c0726176d9d4fe7b251feedc12f226cf73613d7f6e200e2e22acc5f437cd8e5da77d89133b52214c609a6e04
7
- data.tar.gz: 3cca26962f709bcb0ab9df347cff0b56e6f78b6d7a0b78b702bec2a81da6cf8dc6947d94d41aefe0a0b796235ebeb03cafbd8d59017122e8ca19b231aefd77ea
6
+ metadata.gz: 4d012d95a88071aef0acbd0b4594cc0a5f50ec0f42913fda3d3cfab7e16a9188a52160d60a670ff992f43f659381ca0ec0b464ad8d8566e58e5ed16364abd6c6
7
+ data.tar.gz: 505fcd86f6561b549ae7c686978dba2798ad14f7bd5393ef788081856a596915407d00d4de3136cdccda85b357501b3e229fcdc77cab05347778cadcb8333b2a
data/bin/wkhtmltopdf CHANGED
@@ -14,7 +14,7 @@ suffix = case RbConfig::CONFIG['host_os']
14
14
  when /linux/
15
15
  os = `. /etc/os-release 2> /dev/null && echo ${ID}_${VERSION_ID}`.strip
16
16
 
17
- if os.start_with?('elementary') || os.start_with?('linuxmint')
17
+ if os.start_with?('elementary') || os.start_with?('linuxmint') || os.start_with?('pop')
18
18
  os = 'ubuntu_18.04'
19
19
  end
20
20
 
@@ -24,11 +24,14 @@ suffix = case RbConfig::CONFIG['host_os']
24
24
  os = 'centos_6'
25
25
  end
26
26
 
27
+ # Deepin fallback
28
+ os = 'debian_9' if /deepin/.match?(os)
29
+
27
30
  architecture = RbConfig::CONFIG['host_cpu'] == 'x86_64' ? 'amd64' : 'i386'
28
31
 
29
32
  "#{os}_#{architecture}"
30
33
  when /darwin/
31
- RbConfig::CONFIG['host_cpu'] == 'x86_64' ? 'macos_cocoa' : 'macos_carbon'
34
+ 'macos_cocoa'
32
35
  else
33
36
  'unknown'
34
37
  end
@@ -42,8 +45,8 @@ if File.exist?("#{binary}.gz") && !File.exist?(binary)
42
45
  end
43
46
 
44
47
  unless File.exist? binary
45
- raise 'Invalid platform, must be running on Ubuntu 14.04/16.04/18.04 ' \
46
- 'CentOS 6/7/8, Debian 8/9/10, or intel-based macOS ' \
48
+ raise 'Invalid platform, must be running on Ubuntu 16.04/18.04/20.04 ' \
49
+ 'CentOS 6/7/8, Debian 9/10, or intel-based Cocoa macOS ' \
47
50
  "(missing binary: #{binary})."
48
51
  end
49
52
 
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wkhtmltopdf-binary
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.5.4
4
+ version: 0.12.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zakir Durumeric
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-02-09 00:00:00.000000000 Z
11
+ date: 2020-06-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -24,7 +24,7 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
- description:
27
+ description:
28
28
  email: zakird@gmail.com
29
29
  executables:
30
30
  - wkhtmltopdf
@@ -40,23 +40,19 @@ files:
40
40
  - bin/wkhtmltopdf_centos_8_amd64.gz
41
41
  - bin/wkhtmltopdf_debian_10_amd64.gz
42
42
  - bin/wkhtmltopdf_debian_10_i386.gz
43
- - bin/wkhtmltopdf_debian_8_amd64.gz
44
- - bin/wkhtmltopdf_debian_8_i386.gz
45
43
  - bin/wkhtmltopdf_debian_9_amd64.gz
46
44
  - bin/wkhtmltopdf_debian_9_i386.gz
47
- - bin/wkhtmltopdf_macos_carbon.gz
48
45
  - bin/wkhtmltopdf_macos_cocoa.gz
49
- - bin/wkhtmltopdf_ubuntu_14.04_amd64.gz
50
- - bin/wkhtmltopdf_ubuntu_14.04_i386.gz
51
46
  - bin/wkhtmltopdf_ubuntu_16.04_amd64.gz
52
47
  - bin/wkhtmltopdf_ubuntu_16.04_i386.gz
53
48
  - bin/wkhtmltopdf_ubuntu_18.04_amd64.gz
54
49
  - bin/wkhtmltopdf_ubuntu_18.04_i386.gz
55
- homepage:
50
+ - bin/wkhtmltopdf_ubuntu_20.04_amd64.gz
51
+ homepage:
56
52
  licenses:
57
53
  - Apache-2.0
58
54
  metadata: {}
59
- post_install_message:
55
+ post_install_message:
60
56
  rdoc_options: []
61
57
  require_paths:
62
58
  - "."
@@ -71,8 +67,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
71
67
  - !ruby/object:Gem::Version
72
68
  version: '0'
73
69
  requirements: []
74
- rubygems_version: 3.0.6
75
- signing_key:
70
+ rubygems_version: 3.0.3
71
+ signing_key:
76
72
  specification_version: 4
77
73
  summary: Provides binaries for WKHTMLTOPDF project in an easily accessible package.
78
74
  test_files: []
Binary file
Binary file
Binary file
Binary file