-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathhtml2pdf.gemspec
39 lines (39 loc) · 2.02 KB
/
html2pdf.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
38
39
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "html2pdf/version"
Gem::Specification.new do |spec|
spec.name = "html2pdf"
spec.version = Html2Pdf::VERSION
spec.authors = ["Burin Choomnuan"]
spec.email = ["[email protected]"]
spec.summary = %q(Bulk export list of html or xhtml files to pdfs with 'wkhtmltopdf')
spec.description = %q(Export list of html or xhtml files to pdfs with 'wkhtmltopdf')
spec.homepage = "https://github.com/agilecreativity/html2pdf"
spec.required_ruby_version = ">= 1.9.3"
spec.license = "MIT"
spec.files = Dir.glob("{bin,lib}/**/*") + %w[Gemfile
Rakefile
html2pdf.gemspec
README.md
CHANGELOG.md
LICENSE
.rubocop.yml
.gitignore]
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = Dir.glob("{test}/**/*")
spec.require_paths = ["lib"]
spec.add_runtime_dependency "thor", "~> 0.19"
spec.add_runtime_dependency "agile_utils", "~> 0.3"
spec.add_runtime_dependency "code_lister", "~> 0.2"
spec.add_development_dependency "awesome_print", "~> 1.2"
spec.add_development_dependency "bundler", "~> 1.10"
spec.add_development_dependency "guard", "~> 2.6"
spec.add_development_dependency "guard-minitest", "~> 2.3"
spec.add_development_dependency "minitest", "~> 5.4"
spec.add_development_dependency "minitest-spec-context", "~> 0.0"
spec.add_development_dependency "pry", "~> 0.10"
spec.add_development_dependency "rake", "~> 10.3"
spec.add_development_dependency "rubocop", "~> 0.53"
spec.add_development_dependency "yard", "~> 0.9"
end