Sha256: 963153136e58e0cb687789fc24ac9342cf7ac02f241f5f931e52a64a9a1b4558
Contents?: true
Size: 1.5 KB
Versions: 1
Compression:
Stored size: 1.5 KB
Contents
# Version numbering: http://wiki.github.com/sandal/prawn/development-roadmap PRAWN_VERSION = "0.12.0" Gem::Specification.new do |spec| spec.name = "prawn" spec.version = PRAWN_VERSION spec.platform = Gem::Platform::RUBY spec.summary = "A fast and nimble PDF generator for Ruby" spec.files = Dir.glob("{examples,lib,spec,data}/**/**/*") + ["Rakefile", "prawn.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.md LICENSE COPYING GPLv2 GPLv3} spec.rdoc_options << '--title' << 'Prawn Documentation' << '--main' << 'README' << '-q' spec.authors = ["Gregory Brown","Brad Ediger","Daniel Nelson","Jonathan Greenberg","James Healy"] spec.email = ["gregory.t.brown@gmail.com","brad@bradediger.com","dnelson@bluejade.com","greenberg@entryway.net","jimmy@deefa.com"] spec.rubyforge_project = "prawn" spec.add_dependency('pdf-reader', '>=0.9.0') spec.add_dependency('ttfunk', '~>1.0.2') spec.homepage = "http://prawn.majesticseacreature.com" spec.description = <<END_DESC Prawn is a fast, tiny, and nimble PDF generator for Ruby END_DESC spec.post_install_message = <<END_DESC ******************************************** A lot has changed since 0.8.4 Please read the changelog for details: https://github.com/sandal/prawn/wiki/CHANGELOG ******************************************** END_DESC end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
prawn-0.12.0 | prawn.gemspec |