forked from tim-vandecasteele/prawn-svg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
prawn-svg.gemspec
23 lines (20 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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/prawn/svg/version', __FILE__)
spec = Gem::Specification.new do |gem|
gem.name = 'prawn-svg'
gem.version = Prawn::Svg::VERSION
gem.summary = "SVG renderer for Prawn PDF library"
gem.description = "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."
gem.author = "Roger 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.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "prawn-svg"
gem.require_paths = ["lib"]
gem.add_runtime_dependency "prawn", ">= 0.8.4", "< 2"
gem.add_development_dependency "rspec", "~> 2.14"
gem.add_development_dependency "rake", "~> 10.1"
end