-
Notifications
You must be signed in to change notification settings - Fork 20
/
wisepdf.gemspec
37 lines (31 loc) · 1.58 KB
/
wisepdf.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'wisepdf/version'
Gem::Specification.new do |gem|
gem.name = 'wisepdf'
gem.version = Wisepdf::Version::STRING
gem.authors = ['Igor Alexandrov']
gem.email = '[email protected]'
gem.summary = "wkhtmltopdf for Rails done right"
gem.description = "Wisepdf 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 pdf take care of the hard stuff."
gem.homepage = 'http://github.com/igor-alexandrov/wisepdf'
gem.licenses = ['MIT']
gem.files = `git ls-files | grep -v 'build/*'`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'webmock', '~> 1.9.0'
gem.add_development_dependency 'shoulda'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'coveralls'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'bundler'
gem.add_development_dependency 'sqlite3'
gem.add_development_dependency 'faker'
gem.add_development_dependency 'capybara'
gem.add_development_dependency 'rails', '~> 3.2.13'
gem.add_development_dependency 'coffee-rails'
gem.add_development_dependency 'wkhtmltopdf-binary'
end