forked from jordanbyron/prawn-labels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prawn-labels.gemspec
27 lines (23 loc) · 1.01 KB
/
prawn-labels.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
PRAWN_LABELS_VERSION = "0.11.5.0"
Gem::Specification.new do |spec|
spec.name = "prawn-labels"
spec.version = File.read(File.expand_path('VERSION', File.dirname(__FILE__))).strip
spec.platform = Gem::Platform::RUBY
spec.summary = "Make labels using Prawn"
spec.homepage = "http://github.com/jordanbyron/prawn-labels"
spec.description = <<END_DESC
Prawn/Labels takes the guess work out of generating labels using Prawn
END_DESC
spec.files = Dir.glob("{examples,lib}/**/**/*") +
["Rakefile", "prawn-labels.gemspec"]
spec.require_path = "lib"
spec.required_ruby_version = '>= 1.8.7'
spec.required_rubygems_version = ">= 1.3.6"
spec.extra_rdoc_files = %w{README.md LICENSE COPYING}
spec.rdoc_options << '--title' << 'Prawn/Labels Documentation' <<
'--main' << 'README.md' << '-q'
spec.authors = ["Jordan Byron"]
spec.email = ["[email protected]"]
spec.rubyforge_project = "prawn-labels"
spec.add_dependency 'prawn', ['>= 1.0.0', '< 3.0.0']
end