forked from cortiz/prawn-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prawn-rails.gemspec
36 lines (28 loc) · 1.06 KB
/
prawn-rails.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
$:.push File.expand_path("../lib", __FILE__)
require "prawn-rails/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "prawn-rails"
s.version = PrawnRails::VERSION
s.authors = ["Carlos Ortiz", "Weston Ganger"]
s.email = "[email protected]"
s.homepage = "https://github.com/cortiz/prawn-rails"
s.summary = "Prawn Handler for Rails"
s.description = "Prawn Handler for Rails. Handles and registers pdf formats."
s.license = "MIT"
s.files = Dir["{lib}/**/*"] + ["LICENSE", "Rakefile", "README.md", "CHANGELOG.md"]
s.required_ruby_version = '>= 1.9.3'
s.add_dependency "prawn"
s.add_dependency "prawn-table"
s.add_dependency "actionview", ">= 3.1.0"
s.add_development_dependency "pdf-reader"
s.add_development_dependency 'rake'
s.add_development_dependency 'minitest'
s.add_development_dependency 'pry'
if RUBY_VERSION.to_f >= 3.1
s.add_development_dependency 'matrix'
end
if RUBY_VERSION.to_f >= 2.4
s.add_development_dependency 'warning'
end
end