rootapp-wkhtmltopdf-binary 0.12.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f585d3af1f59a3eb6c356c380df66fa3b2eff8f0
4
+ data.tar.gz: c798728481c64a95e063d5e3b4c225a3502fb097
5
+ SHA512:
6
+ metadata.gz: 487bef8a81b8c35aec89898b616266a099f613c0542d606f086db64554cc28460f4cc2f4087362e6ae94c5a11ee30a22ade2b110d2782f177a80fb5ef1238729
7
+ data.tar.gz: 8a3060239a1b03e7ec475893c0249d0306c71d473b14ad006d66e9784061f55d50afc920ed906ecdd4787596a2663cab2b5dc54a4e135d4e63a6cdd4c07e5a10
data/bin/wkhtmltopdf ADDED
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ ###
4
+ # wkhtmltopdf_binary_gem Copyright 2013 The University of Iowa
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License"); you may not
7
+ # use this file except in compliance with the License. You may obtain a copy
8
+ # of the License at http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ require 'rbconfig'
11
+
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."
21
+ end
22
+
23
+ system *$*.unshift("#{__FILE__}_#{suffix}")
File without changes
Binary file
Binary file
Binary file
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rootapp-wkhtmltopdf-binary
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.12.3.1
5
+ platform: ruby
6
+ authors:
7
+ - ROOT devs
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-03-16 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Provides binaries for WKHTMLTOPDF project in an easily accessible package.
14
+ email: devs@joinroot.com
15
+ executables:
16
+ - wkhtmltopdf
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - bin/wkhtmltopdf
21
+ - bin/wkhtmltopdf-binary.rb
22
+ - bin/wkhtmltopdf_darwin_x86
23
+ - bin/wkhtmltopdf_linux_amd64
24
+ - bin/wkhtmltopdf_linux_x86
25
+ homepage: https://github.com/Root-App/wkhtmltopdf_binary_gem
26
+ licenses:
27
+ - Apache-2.0
28
+ metadata: {}
29
+ post_install_message:
30
+ rdoc_options: []
31
+ require_paths:
32
+ - "."
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubyforge_project:
45
+ rubygems_version: 2.4.8
46
+ signing_key:
47
+ specification_version: 4
48
+ summary: WKHTMLTOPDF binaries
49
+ test_files: []