Sha256: d09c2f1850b73534eb311d0932ec8892e318eb1fa5ebd1773df8f5cf3ae08dfe
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
require 'rubygems' require 'rake' require "rake/gempackagetask" PRAWN_GRAPH_VERSION = '0.0.1' spec = Gem::Specification.new do |spec| spec.name = "prawn-graph" spec.version = PRAWN_GRAPH_VERSION spec.platform = Gem::Platform::RUBY spec.summary = "An extension to Prawn that provides the ability to draw basic graphs and charts natively in your PDFs." spec.files = Dir.glob("{examples,lib,spec,vendor,data}/**/**/*") + ["Rakefile"] spec.require_path = "lib" spec.test_files = Dir[ "test/*_test.rb" ] spec.has_rdoc = true spec.extra_rdoc_files = %w{README.markdown} spec.rdoc_options << '--title' << 'Prawn Documentation' << '--main' << 'README' << '-q' spec.author = "Ryan Stenhouse" spec.email = " ryan@ryanstenhouse.eu" spec.rubyforge_project = "prawn" spec.homepage = "http://ryanstenhouse.eu" spec.description = <<END_DESC An extension to Prawn that provides the ability to draw basic graphs and charts natively in your PDFs. END_DESC end Rake::GemPackageTask.new(spec) do |pkg| pkg.need_zip = true pkg.need_tar = true end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
prawn-graph-0.0.1 | Rakefile |