-
Notifications
You must be signed in to change notification settings - Fork 0
/
wicked_pdf.gemspec
23 lines (19 loc) · 939 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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/wicked_pdf/version", __FILE__)
Gem::Specification.new do |s|
s.name = "wicked_pdf"
s.version = WickedPdf::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Miles Z. Sterrett", "Jonathan Chang", "Adam St. John"]
s.email = ["[email protected]", "unknown", "[email protected]"]
s.homepage = "https://github.com/astjohn/wicked_pdf"
s.summary = "Easy pdf creation using rails' views."
s.description = "Wicked PDF uses the wkhtmltopdf library to generate pdf documents from views."
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "bundler", "~> 1.0.0"
s.add_dependency "rails", ">= 3.0.1"
s.add_development_dependency "rspec", ">= 2.1.0"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end