wkhtmltopdf-binary 0.12.5.4 → 0.12.6

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: 9136890b342bdf929fef2ac2597db22f059356df1a69c21948b8350f8ee1be75
4
+ data.tar.gz: 447244dc7477c7654b8fc60282448dce2fc6d0e3b9487cc787ab329ff9238b2f
5
5
  SHA512:
6
- metadata.gz: 2770523ec0fa8e3f72dad317d3e3c1c395eb5748c0726176d9d4fe7b251feedc12f226cf73613d7f6e200e2e22acc5f437cd8e5da77d89133b52214c609a6e04
7
- data.tar.gz: 3cca26962f709bcb0ab9df347cff0b56e6f78b6d7a0b78b702bec2a81da6cf8dc6947d94d41aefe0a0b796235ebeb03cafbd8d59017122e8ca19b231aefd77ea
6
+ metadata.gz: 2e46d531ac16f2c1cf9eecfd630b935f8bfa55679cbf80e0f506394ee470f0bbfad85badbd89797db768ae9c004f6d5e7f860c6fd0f25c8cecb64c9d1fb96380
7
+ data.tar.gz: c3dec361e0f3bc67aedf5a190ac947abc730672a89320cc60045d061c7378c978f5152cc1a7af2d0317cc18a094eab94d7772d9e187fdbfd9fc5b4b962543825
@@ -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
 
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
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-02-09 00:00:00.000000000 Z
11
+ date: 2020-06-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -40,14 +40,9 @@ 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
@@ -71,7 +66,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
71
66
  - !ruby/object:Gem::Version
72
67
  version: '0'
73
68
  requirements: []
74
- rubygems_version: 3.0.6
69
+ rubygems_version: 3.0.3
75
70
  signing_key:
76
71
  specification_version: 4
77
72
  summary: Provides binaries for WKHTMLTOPDF project in an easily accessible package.