Sha256: 9c1530927bdfe88880dc7b5d9077104b761052c1e5d747501e77656300f01024

Contents?: true

Size: 499 Bytes

Versions: 41

Compression:

Stored size: 499 Bytes

Contents

#!/usr/bin/env rake

require 'bundler/gem_tasks'

begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'prawn-svg documentation'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec) do |spec|
end

task :default => :spec

Version data entries

41 entries across 41 versions & 1 rubygems

Version Path
prawn-svg-0.34.2 Rakefile
prawn-svg-0.34.1 Rakefile
prawn-svg-0.34.0 Rakefile
prawn-svg-0.33.0 Rakefile
prawn-svg-0.32.0 Rakefile
prawn-svg-0.31.0 Rakefile
prawn-svg-0.30.0 Rakefile
prawn-svg-0.29.1 Rakefile
prawn-svg-0.29.0 Rakefile
prawn-svg-0.28.0 Rakefile
prawn-svg-0.27.1 Rakefile
prawn-svg-0.27.0 Rakefile
prawn-svg-0.26.0 Rakefile
prawn-svg-0.25.2 Rakefile
prawn-svg-0.25.1 Rakefile
prawn-svg-0.25.0 Rakefile
prawn-svg-0.24.0 Rakefile
prawn-svg-0.23.1 Rakefile
prawn-svg-0.23.0 Rakefile
prawn-svg-0.22.1 Rakefile