forked from mileszs/wicked_pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wicked_pdf.gemspec
23 lines (20 loc) · 966 Bytes
/
wicked_pdf.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
s.name = "wicked_pdf"
s.version = "0.9.2"
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "PDF generator (from HTML) plugin for Ruby on Rails"
s.homepage = "https://github.com/mileszs/wicked_pdf"
s.email = "[email protected]"
s.authors = [ "Miles Z. Sterret" ]
s.files = %w( README.md Rakefile MIT-LICENSE )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("test/**/*")
s.files += Dir.glob("generators/**/*")
s.add_dependency('rails')
s.add_development_dependency('rake')
s.description = <<desc
Wicked PDF uses the shell utility wkhtmltopdf to serve a PDF file to a user from HTML.
In other words, rather than dealing with a PDF generation DSL of some sort,
you simply write an HTML view as you would normally, and let Wicked take care of the hard stuff.
desc
end