wkhtmltopdf-binary 0.12.3 → 0.12.5

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
- SHA1:
3
- metadata.gz: 07694dbdb61ef7ea64446b3eda78fb53d056c582
4
- data.tar.gz: 872bead5ad4c068d88d097057c726b5b531cfff3
2
+ SHA256:
3
+ metadata.gz: 03e03fbca433474d72f037c299f65d937726ecf0fff94b2cd09c308d4133cd33
4
+ data.tar.gz: 78ccbadf39f2a0752307f49f19f594b2dbe5bb8c04b126545417a479a96f70d8
5
5
  SHA512:
6
- metadata.gz: 25cd47dfb0aa60b81bf17709f63da66834127a710baf403fe2881f7027fafe0ce113bce82e622d3b125df898d9ad9807a50abfc3eecde8054d4c13272ba6eaf8
7
- data.tar.gz: 33f941e87d15b0c377dea26fe4bcb1d5712ce56477909bd859821c5de7c53cb305d8059c685bde85316b309c694638c46c1d5f44c1b54ece0062128074e376c5
6
+ metadata.gz: '053098c9f5d10439fb77e966141768e5f86d4ca097293af0760813264dec67d15de57e543eb926c714975025f419287ac8b87dd84fb72ffbacf15e21f8d46e5c'
7
+ data.tar.gz: '06358c2b3444585ebbeecb4d05604b84599ba976baebafd51789b1062cd43e9dcccf161ff008e5ac65a3778f1f2ac2264c0aea98384a4e86b6102228468364c6'
@@ -8,16 +8,38 @@
8
8
  # of the License at http://www.apache.org/licenses/LICENSE-2.0
9
9
 
10
10
  require 'rbconfig'
11
+ require 'zlib'
11
12
 
12
- suffix = case RbConfig::CONFIG['host']
13
- when /x86_64.*linux/
14
- 'linux_amd64'
15
- when /linux/
16
- 'linux_x86'
17
- when /darwin/
18
- 'darwin_x86'
19
- else
20
- raise "Invalid platform. Must be running on linux or intel-based Mac OS."
13
+ suffix = case RbConfig::CONFIG['host_os']
14
+ when /linux/
15
+ os = `. /etc/os-release 2> /dev/null && echo ${ID}_${VERSION_ID}`.strip
16
+
17
+ # CentOS 6 doesn't have `/etc/os-release`.
18
+ if os.empty? && File.read('/etc/centos-release').start_with?('CentOS release 6')
19
+ os = 'centos_6'
20
+ end
21
+
22
+ architecture = RbConfig::CONFIG['host_cpu'] == 'x86_64' ? 'amd64' : 'i386'
23
+
24
+ "#{os}_#{architecture}"
25
+ when /darwin/
26
+ RbConfig::CONFIG['host_cpu'] == 'x86_64' ? 'macos_cocoa' : 'macos_carbon'
27
+ else
28
+ 'unknown'
29
+ end
30
+
31
+ binary = "#{__FILE__}_#{suffix}"
32
+
33
+ if File.exist?("#{binary}.gz") && !File.exist?(binary)
34
+ File.open binary, 'wb', 0o755 do |file|
35
+ Zlib::GzipReader.open("#{binary}.gz") { |gzip| file << gzip.read }
36
+ end
37
+ end
38
+
39
+ unless File.exist? binary
40
+ raise 'Invalid platform, must be running on Ubuntu 14.04/16.04/18.04 ' \
41
+ 'CentOS 6/7, Debian 8/9, or intel-based macOS ' \
42
+ "(missing binary: #{binary})."
21
43
  end
22
44
 
23
- system *$*.unshift("#{__FILE__}_#{suffix}")
45
+ system *$*.unshift(binary)
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wkhtmltopdf-binary
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.3
4
+ version: 0.12.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zakir Durumeric
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-14 00:00:00.000000000 Z
12
- dependencies: []
11
+ date: 2019-11-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: minitest
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
13
27
  description:
14
28
  email: zakird@gmail.com
15
29
  executables:
@@ -19,11 +33,25 @@ extra_rdoc_files: []
19
33
  files:
20
34
  - bin/wkhtmltopdf
21
35
  - bin/wkhtmltopdf-binary.rb
22
- - bin/wkhtmltopdf_darwin_x86
23
- - bin/wkhtmltopdf_linux_amd64
24
- - bin/wkhtmltopdf_linux_x86
36
+ - bin/wkhtmltopdf_centos_6_amd64.gz
37
+ - bin/wkhtmltopdf_centos_6_i386.gz
38
+ - bin/wkhtmltopdf_centos_7_amd64.gz
39
+ - bin/wkhtmltopdf_centos_7_i386.gz
40
+ - bin/wkhtmltopdf_debian_8_amd64.gz
41
+ - bin/wkhtmltopdf_debian_8_i386.gz
42
+ - bin/wkhtmltopdf_debian_9_amd64.gz
43
+ - bin/wkhtmltopdf_debian_9_i386.gz
44
+ - bin/wkhtmltopdf_macos_carbon.gz
45
+ - bin/wkhtmltopdf_macos_cocoa.gz
46
+ - bin/wkhtmltopdf_ubuntu_14.04_amd64.gz
47
+ - bin/wkhtmltopdf_ubuntu_14.04_i386.gz
48
+ - bin/wkhtmltopdf_ubuntu_16.04_amd64.gz
49
+ - bin/wkhtmltopdf_ubuntu_16.04_i386.gz
50
+ - bin/wkhtmltopdf_ubuntu_18.04_amd64.gz
51
+ - bin/wkhtmltopdf_ubuntu_18.04_i386.gz
25
52
  homepage:
26
- licenses: []
53
+ licenses:
54
+ - Apache-2.0
27
55
  metadata: {}
28
56
  post_install_message:
29
57
  rdoc_options: []
@@ -40,8 +68,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
40
68
  - !ruby/object:Gem::Version
41
69
  version: '0'
42
70
  requirements: []
43
- rubyforge_project:
44
- rubygems_version: 2.5.1
71
+ rubygems_version: 3.0.3
45
72
  signing_key:
46
73
  specification_version: 4
47
74
  summary: Provides binaries for WKHTMLTOPDF project in an easily accessible package.
Binary file
Binary file
Binary file