wkhtmltopdf-binary 0.12.5.1 → 0.12.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/wkhtmltopdf +8 -3
- data/bin/wkhtmltopdf_centos_8_amd64.gz +0 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad5629221977d98b4ec34a55909349aa0a3feac314820f1b2feb666d1683bffc
|
4
|
+
data.tar.gz: ebd125fda7158c3b11b8fa239141c111885a49649884a7be985e379430fefef5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4f86c5e28c0e2ace51f64634124b04fbc7e088617c4800ff5fac0adf3aa52e750324f09e3c2f93bb10287faa968c787a34c75be3d8c6a8d65ed26fe2caa1f6b
|
7
|
+
data.tar.gz: 91bbf71febe54aef3fd44f0c87e06b98caa26fbe381802e0edee8fa0ceafd20f2a21cff59eba51b1ac5716ab95c62954cb35b5bb94e5245c78cfa11dfc6f7aca
|
data/bin/wkhtmltopdf
CHANGED
@@ -14,8 +14,13 @@ 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')
|
18
|
+
os = 'ubuntu_18.04'
|
19
|
+
end
|
20
|
+
|
17
21
|
# CentOS 6 doesn't have `/etc/os-release`.
|
18
|
-
if os.empty? && File.read('/etc/centos-release').start_with?('CentOS release 6')
|
22
|
+
if (os.empty? && File.read('/etc/centos-release').start_with?('CentOS release 6')) ||
|
23
|
+
os.start_with?('amzn_')
|
19
24
|
os = 'centos_6'
|
20
25
|
end
|
21
26
|
|
@@ -38,8 +43,8 @@ end
|
|
38
43
|
|
39
44
|
unless File.exist? binary
|
40
45
|
raise 'Invalid platform, must be running on Ubuntu 14.04/16.04/18.04 ' \
|
41
|
-
'CentOS 6/7, Debian 8/9/10, or intel-based macOS ' \
|
46
|
+
'CentOS 6/7/8, Debian 8/9/10, or intel-based macOS ' \
|
42
47
|
"(missing binary: #{binary})."
|
43
48
|
end
|
44
49
|
|
45
|
-
|
50
|
+
exec *$*.unshift(binary)
|
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
|
+
version: 0.12.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Zakir Durumeric
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: minitest
|
@@ -37,6 +37,7 @@ files:
|
|
37
37
|
- bin/wkhtmltopdf_centos_6_i386.gz
|
38
38
|
- bin/wkhtmltopdf_centos_7_amd64.gz
|
39
39
|
- bin/wkhtmltopdf_centos_7_i386.gz
|
40
|
+
- bin/wkhtmltopdf_centos_8_amd64.gz
|
40
41
|
- bin/wkhtmltopdf_debian_10_amd64.gz
|
41
42
|
- bin/wkhtmltopdf_debian_10_i386.gz
|
42
43
|
- bin/wkhtmltopdf_debian_8_amd64.gz
|
@@ -70,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
70
71
|
- !ruby/object:Gem::Version
|
71
72
|
version: '0'
|
72
73
|
requirements: []
|
73
|
-
rubygems_version: 3.0.
|
74
|
+
rubygems_version: 3.0.6
|
74
75
|
signing_key:
|
75
76
|
specification_version: 4
|
76
77
|
summary: Provides binaries for WKHTMLTOPDF project in an easily accessible package.
|