public
Fork of sandal/prawn
Description: Fast, Nimble PDF Writer for Ruby
Homepage: http://prawn.lighthouseapp.com/projects/9398/home
Clone URL: git://github.com/yob/prawn.git
prawn / prawn.gemspec
100644 19 lines (17 sloc) 0.727 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# This is to be used to generate the prawn meta-gem only. You probably want to
# build prawn-core unless you know exactly what you are doing, so do rake gem
# instead.
 
Gem::Specification.new do |spec|
  spec.name = "prawn"
  spec.version = "0.4.99"
  spec.platform = Gem::Platform::RUBY
  spec.summary = "A fast and nimble PDF generator for Ruby"
  spec.add_dependency('prawn-core', '>= 0.4.99')
  spec.add_dependency('prawn-layout')
  spec.add_dependency('prawn-format')
  spec.author = "Gregory Brown"
  spec.email = " gregory.t.brown@gmail.com"
  spec.rubyforge_project = "prawn"
  spec.homepage = "http://prawn.majesticseacreature.com"
  spec.description = "Prawn is a fast, tiny, and nimble PDF generator for Ruby"
end