-
Notifications
You must be signed in to change notification settings - Fork 1
/
prawn_oval_text.gemspec
26 lines (24 loc) · 1016 Bytes
/
prawn_oval_text.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
# Version numbering: http://wiki.github.com/sandal/prawn/development-roadmap
PRAWN_OVAL_TEXT_VERSION = "0.11.1"
Gem::Specification.new do |spec|
spec.name = "prawn_oval_text"
spec.version = PRAWN_OVAL_TEXT_VERSION
spec.platform = Gem::Platform::RUBY
spec.summary = "Oval text for Prawn"
spec.files = Dir.glob("{examples,lib,spec}/**/**/*") +
["Rakefile", "prawn_oval_text.gemspec"]
spec.require_path = "lib"
spec.required_ruby_version = '>= 1.8.7'
spec.required_rubygems_version = ">= 1.3.6"
spec.test_files = Dir[ "spec/*_spec.rb" ]
spec.extra_rdoc_files = %w{README.rdoc LICENSE}
spec.rdoc_options << '--title' << 'Prawn Oval Text Documentation' <<
'--main' << 'README.rdoc' << '-q'
spec.authors = ["Daniel Nelson"]
spec.email = ["[email protected]"]
spec.add_dependency('prawn', '>=0.11.1')
spec.homepage = "https://github.com/Bluejade/prawn-oval-text"
spec.description = <<END_DESC
Adds oval shaped text to Prawn
END_DESC
end