forked from mileszs/wicked_pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwicked_pdf.gemspec
More file actions
19 lines (17 loc) · 845 Bytes
/
wicked_pdf.gemspec
File metadata and controls
19 lines (17 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Gem::Specification.new do |s|
s.name = "wicked_pdf"
s.version = "0.7.2"
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "PDF generator (from HTML) plugin for Ruby on Rails"
s.homepage = "http://github.com/mileszs/wicked_pdf"
s.email = "miles.sterrett@gmail.com"
s.authors = [ "Miles Z. Sterret" ]
s.files = %w( README.md Rakefile MIT-LICENSE )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("test/**/*")
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