-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathprawn-svg.gemspec
26 lines (22 loc) · 1 KB
/
prawn-svg.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
require File.expand_path('lib/prawn/svg/version', __dir__)
Gem::Specification.new do |gem|
gem.name = 'prawn-svg'
gem.version = Prawn::SVG::VERSION
gem.summary = 'SVG renderer for Prawn PDF library'
gem.description = <<-DESC.strip
This gem allows you to render SVG directly into a PDF using the 'prawn' gem. Since PDF is vector-based, you'll get nice scaled graphics if you use SVG instead of an image.
DESC
gem.author = 'Mog Nesbitt'
gem.email = '[email protected]'
gem.homepage = 'http://github.com/mogest/prawn-svg'
gem.license = 'MIT'
gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.require_paths = ['lib']
gem.metadata = { 'rubygems_mfa_required' => 'true' }
gem.required_ruby_version = '>= 2.7.0'
gem.add_dependency 'css_parser', '~> 1.6'
gem.add_dependency 'matrix', '~> 0.4.2'
gem.add_dependency 'prawn', '>= 0.11.1', '< 3'
gem.add_dependency 'rexml', '>= 3.3.9', '< 4'
end