-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfill_pdf.gemspec
30 lines (24 loc) · 1.04 KB
/
fill_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
24
25
26
27
28
29
30
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "fill_pdf/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "fill_pdf"
s.version = FillPdf::VERSION
s.platform = Gem::Platform::RUBY
s.summary = "A plugin for populate fields in a pdf file and download it."
s.description = "A plugin for populate fields in a pdf file and download it."
s.requirements << 'You must have pdftk installed'
s.license = "MIT"
s.authors = ["Armand Niampa", "Hubert Lobit"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://www.capsens.eu"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "pdf-forms", "~> 0.6"
s.add_dependency "combine_pdf", "~> 0.2"
s.add_development_dependency "bundler"
s.add_development_dependency "rake"
s.add_development_dependency "minitest"
s.add_development_dependency "rails"
end