wkhtmltopdf-binary-11 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +12 -0
- data/README.rdoc +19 -0
- data/Rakefile +44 -0
- data/VERSION +1 -0
- data/bin/wkhtmltopdf +17 -0
- data/lib/wkhtmltopdf-binary.rb +0 -0
- data/libexec/wkhtmltopdf-darwin-x86 +0 -0
- data/libexec/wkhtmltopdf-linux-amd64 +0 -0
- data/libexec/wkhtmltopdf-linux-x86 +0 -0
- data/libexec/wkhtmltopdf.app/Contents/Info.plist +20 -0
- data/libexec/wkhtmltopdf.app/Contents/MacOS/wkhtmltopdf +0 -0
- data/libexec/wkhtmltopdf.app/Contents/PkgInfo +1 -0
- data/libexec/wkhtmltopdf.app/Contents/Resources/empty.lproj +0 -0
- data/libexec/wkhtmltopdf.app/Contents/Resources/qt.conf +2 -0
- data/libexec/wkhtmltopdf.app/Contents/Resources/qt_menu.nib/classes.nib +59 -0
- data/libexec/wkhtmltopdf.app/Contents/Resources/qt_menu.nib/info.nib +18 -0
- data/libexec/wkhtmltopdf.app/Contents/Resources/qt_menu.nib/keyedobjects.nib +0 -0
- metadata +101 -0
data/Gemfile
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
source "http://rubygems.org"
|
2
|
+
# Add dependencies required to use your gem here.
|
3
|
+
# Example:
|
4
|
+
# gem "activesupport", ">= 2.3.5"
|
5
|
+
|
6
|
+
# Add dependencies to develop your gem here.
|
7
|
+
# Include everything needed to run rake, tests, features, etc.
|
8
|
+
group :development do
|
9
|
+
gem "rdoc", "~> 3.12"
|
10
|
+
gem "bundler", "~> 1.0"
|
11
|
+
gem "jeweler", "~> 1.8.4"
|
12
|
+
end
|
data/README.rdoc
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
= wkhtmltopdf-binary-11
|
2
|
+
|
3
|
+
Description goes here.
|
4
|
+
|
5
|
+
== Contributing to wkhtmltopdf-binary-11
|
6
|
+
|
7
|
+
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
8
|
+
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
|
9
|
+
* Fork the project.
|
10
|
+
* Start a feature/bugfix branch.
|
11
|
+
* Commit and push until you are happy with your contribution.
|
12
|
+
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
13
|
+
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
14
|
+
|
15
|
+
== Copyright
|
16
|
+
|
17
|
+
Copyright (c) 2013 Drew Batshaw. See LICENSE.txt for
|
18
|
+
further details.
|
19
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'rubygems'
|
4
|
+
require 'bundler'
|
5
|
+
begin
|
6
|
+
Bundler.setup(:default, :development)
|
7
|
+
rescue Bundler::BundlerError => e
|
8
|
+
$stderr.puts e.message
|
9
|
+
$stderr.puts "Run `bundle install` to install missing gems"
|
10
|
+
exit e.status_code
|
11
|
+
end
|
12
|
+
require 'rake'
|
13
|
+
|
14
|
+
require 'jeweler'
|
15
|
+
Jeweler::Tasks.new do |gem|
|
16
|
+
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
17
|
+
gem.name = "wkhtmltopdf-binary-11"
|
18
|
+
gem.homepage = "http://github.com/dbatshaw/wkhtmltopdf-binary-11"
|
19
|
+
gem.license = "MIT"
|
20
|
+
gem.summary = "Provides 0.11rc binaries for WKHTMLTOPDF project in an easily accessible package."
|
21
|
+
gem.email = "dev@forthillcompany.com"
|
22
|
+
gem.authors = ["Fort Hill Company"]
|
23
|
+
# dependencies defined in Gemfile
|
24
|
+
end
|
25
|
+
Jeweler::RubygemsDotOrgTasks.new
|
26
|
+
|
27
|
+
require 'rake/testtask'
|
28
|
+
Rake::TestTask.new(:test) do |test|
|
29
|
+
test.libs << 'lib' << 'test'
|
30
|
+
test.pattern = 'test/**/test_*.rb'
|
31
|
+
test.verbose = true
|
32
|
+
end
|
33
|
+
|
34
|
+
task :default => :test
|
35
|
+
|
36
|
+
require 'rdoc/task'
|
37
|
+
Rake::RDocTask.new do |rdoc|
|
38
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
39
|
+
|
40
|
+
rdoc.rdoc_dir = 'rdoc'
|
41
|
+
rdoc.title = "wkhtmltopdf-binary-11 #{version}"
|
42
|
+
rdoc.rdoc_files.include('README*')
|
43
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
44
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.0
|
data/bin/wkhtmltopdf
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
executable = case RUBY_PLATFORM
|
4
|
+
when /64.*linux/
|
5
|
+
'wkhtmltopdf-linux-amd64'
|
6
|
+
when /linux/
|
7
|
+
'wkhtmltopdf-linux-x86'
|
8
|
+
when /darwin/
|
9
|
+
'wkhtmltopdf.app/Contents/MacOS/wkhtmltopdf'
|
10
|
+
else
|
11
|
+
raise "Invalid platform. Must be running linux or intel-based Mac OS."
|
12
|
+
end
|
13
|
+
|
14
|
+
args = $*.map { |x| x.include?(' ') ? "'" + x + "'" : x }
|
15
|
+
cmd = File.expand_path "#{File.dirname(__FILE__)}/../libexec/#{executable}"
|
16
|
+
|
17
|
+
exec "#{cmd} #{args.join(' ')}"
|
File without changes
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
|
3
|
+
<plist version="0.9">
|
4
|
+
<dict>
|
5
|
+
<key>CFBundleIconFile</key>
|
6
|
+
<string></string>
|
7
|
+
<key>CFBundlePackageType</key>
|
8
|
+
<string>APPL</string>
|
9
|
+
<key>CFBundleGetInfoString</key>
|
10
|
+
<string>Created by Qt/QMake</string>
|
11
|
+
<key>CFBundleSignature</key>
|
12
|
+
<string>????</string>
|
13
|
+
<key>CFBundleExecutable</key>
|
14
|
+
<string>wkhtmltopdf</string>
|
15
|
+
<key>CFBundleIdentifier</key>
|
16
|
+
<string>com.yourcompany.wkhtmltopdf</string>
|
17
|
+
<key>NOTE</key>
|
18
|
+
<string>This file was generated by Qt/QMake.</string>
|
19
|
+
</dict>
|
20
|
+
</plist>
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
APPL????
|
File without changes
|
@@ -0,0 +1,59 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
+
<plist version="1.0">
|
4
|
+
<dict>
|
5
|
+
<key>IBClasses</key>
|
6
|
+
<array>
|
7
|
+
<dict>
|
8
|
+
<key>ACTIONS</key>
|
9
|
+
<dict>
|
10
|
+
<key>hide</key>
|
11
|
+
<string>id</string>
|
12
|
+
<key>hideOtherApplications</key>
|
13
|
+
<string>id</string>
|
14
|
+
<key>orderFrontStandardAboutPanel</key>
|
15
|
+
<string>id</string>
|
16
|
+
<key>qtDispatcherToQAction</key>
|
17
|
+
<string>id</string>
|
18
|
+
<key>terminate</key>
|
19
|
+
<string>id</string>
|
20
|
+
<key>unhideAllApplications</key>
|
21
|
+
<string>id</string>
|
22
|
+
</dict>
|
23
|
+
<key>CLASS</key>
|
24
|
+
<string>QCocoaMenuLoader</string>
|
25
|
+
<key>LANGUAGE</key>
|
26
|
+
<string>ObjC</string>
|
27
|
+
<key>OUTLETS</key>
|
28
|
+
<dict>
|
29
|
+
<key>aboutItem</key>
|
30
|
+
<string>NSMenuItem</string>
|
31
|
+
<key>aboutQtItem</key>
|
32
|
+
<string>NSMenuItem</string>
|
33
|
+
<key>appMenu</key>
|
34
|
+
<string>NSMenu</string>
|
35
|
+
<key>hideItem</key>
|
36
|
+
<string>NSMenuItem</string>
|
37
|
+
<key>preferencesItem</key>
|
38
|
+
<string>NSMenuItem</string>
|
39
|
+
<key>quitItem</key>
|
40
|
+
<string>NSMenuItem</string>
|
41
|
+
<key>theMenu</key>
|
42
|
+
<string>NSMenu</string>
|
43
|
+
</dict>
|
44
|
+
<key>SUPERCLASS</key>
|
45
|
+
<string>NSResponder</string>
|
46
|
+
</dict>
|
47
|
+
<dict>
|
48
|
+
<key>CLASS</key>
|
49
|
+
<string>FirstResponder</string>
|
50
|
+
<key>LANGUAGE</key>
|
51
|
+
<string>ObjC</string>
|
52
|
+
<key>SUPERCLASS</key>
|
53
|
+
<string>NSObject</string>
|
54
|
+
</dict>
|
55
|
+
</array>
|
56
|
+
<key>IBVersion</key>
|
57
|
+
<string>1</string>
|
58
|
+
</dict>
|
59
|
+
</plist>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
+
<plist version="1.0">
|
4
|
+
<dict>
|
5
|
+
<key>IBFramework Version</key>
|
6
|
+
<string>672</string>
|
7
|
+
<key>IBOldestOS</key>
|
8
|
+
<integer>5</integer>
|
9
|
+
<key>IBOpenObjects</key>
|
10
|
+
<array>
|
11
|
+
<integer>57</integer>
|
12
|
+
</array>
|
13
|
+
<key>IBSystem Version</key>
|
14
|
+
<string>9L31a</string>
|
15
|
+
<key>targetFramework</key>
|
16
|
+
<string>IBCocoaFramework</string>
|
17
|
+
</dict>
|
18
|
+
</plist>
|
metadata
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: wkhtmltopdf-binary-11
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Fort Hill Company
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-07-22 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rdoc
|
16
|
+
requirement: &12878440 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '3.12'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *12878440
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: bundler
|
27
|
+
requirement: &12877780 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ~>
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '1.0'
|
33
|
+
type: :development
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *12877780
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: jeweler
|
38
|
+
requirement: &12876680 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ~>
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 1.8.4
|
44
|
+
type: :development
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: *12876680
|
47
|
+
description:
|
48
|
+
email: dev@forthillcompany.com
|
49
|
+
executables:
|
50
|
+
- wkhtmltopdf
|
51
|
+
extensions: []
|
52
|
+
extra_rdoc_files:
|
53
|
+
- README.rdoc
|
54
|
+
files:
|
55
|
+
- Gemfile
|
56
|
+
- README.rdoc
|
57
|
+
- Rakefile
|
58
|
+
- VERSION
|
59
|
+
- bin/wkhtmltopdf
|
60
|
+
- lib/wkhtmltopdf-binary.rb
|
61
|
+
- libexec/wkhtmltopdf-darwin-x86
|
62
|
+
- libexec/wkhtmltopdf-linux-amd64
|
63
|
+
- libexec/wkhtmltopdf-linux-x86
|
64
|
+
- libexec/wkhtmltopdf.app/Contents/Info.plist
|
65
|
+
- libexec/wkhtmltopdf.app/Contents/MacOS/wkhtmltopdf
|
66
|
+
- libexec/wkhtmltopdf.app/Contents/PkgInfo
|
67
|
+
- libexec/wkhtmltopdf.app/Contents/Resources/empty.lproj
|
68
|
+
- libexec/wkhtmltopdf.app/Contents/Resources/qt.conf
|
69
|
+
- libexec/wkhtmltopdf.app/Contents/Resources/qt_menu.nib/classes.nib
|
70
|
+
- libexec/wkhtmltopdf.app/Contents/Resources/qt_menu.nib/info.nib
|
71
|
+
- libexec/wkhtmltopdf.app/Contents/Resources/qt_menu.nib/keyedobjects.nib
|
72
|
+
homepage: http://github.com/dbatshaw/wkhtmltopdf-binary-11
|
73
|
+
licenses:
|
74
|
+
- MIT
|
75
|
+
post_install_message:
|
76
|
+
rdoc_options: []
|
77
|
+
require_paths:
|
78
|
+
- lib
|
79
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
+
none: false
|
81
|
+
requirements:
|
82
|
+
- - ! '>='
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
85
|
+
segments:
|
86
|
+
- 0
|
87
|
+
hash: -4001974029488262632
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ! '>='
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
requirements: []
|
95
|
+
rubyforge_project:
|
96
|
+
rubygems_version: 1.8.15
|
97
|
+
signing_key:
|
98
|
+
specification_version: 3
|
99
|
+
summary: Provides 0.11rc binaries for WKHTMLTOPDF project in an easily accessible
|
100
|
+
package.
|
101
|
+
test_files: []
|