forked from wopata/wkhtmltopdf-binary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
20 lines (18 loc) · 635 Bytes
/
Rakefile
File metadata and controls
20 lines (18 loc) · 635 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'rubygems'
require 'rubygems/packagetask'
require 'rubygems/gempackagetask'
spec = Gem::Specification.new do |s|
s.name = "wkhtmltopdf-binary"
s.version = "0.9.9"
s.author = "Research Information Systems, The University of Iowa"
s.email = "vpr-ris-developers@iowa.uiowa.edu,mcollas@aconex.com"
s.platform = Gem::Platform::RUBY
s.summary = "Provides binaries for WKHTMLTOPDF project in an easily accessible package."
s.files = FileList["{bin,libexec,lib}/*"].to_a
s.has_rdoc = false
s.executables << "wkhtmltopdf"
s.require_path = '.'
end
Rake::GemPackageTask.new(spec) do |pkg|
pkg.need_tar = true
end