Rakefile in pdf-wrapper-0.0.2 vs Rakefile in pdf-wrapper-0.0.3

- old
+ new

@@ -4,11 +4,11 @@ require 'rake/rdoctask' require 'rake/testtask' require "rake/gempackagetask" require 'spec/rake/spectask' -PKG_VERSION = "0.0.2" +PKG_VERSION = "0.0.3" PKG_NAME = "pdf-wrapper" PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" desc "Default Task" task :default => [ :spec ] @@ -44,11 +44,11 @@ Rake::RDocTask.new("doc") do |rdoc| rdoc.title = "pdf-wrapper" rdoc.rdoc_dir = (ENV['CC_BUILD_ARTIFACTS'] || 'doc') + '/rdoc' rdoc.rdoc_files.include('README') rdoc.rdoc_files.include('CHANGELOG') - rdoc.rdoc_files.include('DESIGN') + rdoc.rdoc_files.include('TODO') rdoc.rdoc_files.include('lib/**/*.rb') rdoc.options << "--inline-source" end desc "Publish rdocs to rubyforge" @@ -64,16 +64,16 @@ spec.platform = Gem::Platform::RUBY spec.summary = "A PDF generating library built on top of cairo" spec.files = Dir.glob("{examples,lib,specs}/**/**/*") + ["Rakefile"] spec.require_path = "lib" spec.has_rdoc = true - spec.extra_rdoc_files = %w{README DESIGN CHANGELOG} + spec.extra_rdoc_files = %w{README CHANGELOG TODO} spec.rdoc_options << '--title' << 'PDF::Wrapper Documentation' << '--main' << 'README' << '-q' spec.author = "James Healy" spec.homepage = "http://pdf-wrapper.rubyforge.org/" spec.email = "jimmy@deefa.com" spec.rubyforge_project = "pdf-wrapper" - spec.description = "A unicode aware PDF writing library that uses the ruby bindings to various c libraries ( like, cairo, pango, poppler and rsvg ) to do the heavy lifting." + spec.description = "A unicode aware PDF writing library that uses the ruby bindings to various c libraries ( like cairo, pango, poppler and rsvg ) to do the heavy lifting." end # package the library into a gem desc "Generate a gem for pdf-wrapper" Rake::GemPackageTask.new(spec) do |pkg|