Sha256: 9a5b44a97b3bef8a8a080ab5fee2e098a59fd3cf3de51a1bb59bd4299501214c

Contents?: true

Size: 566 Bytes

Versions: 12

Compression:

Stored size: 566 Bytes

Contents

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

desc 'Default: run unit tests.'
task :default => :test

desc 'Test the classic_pagination plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end

desc 'Generate documentation for the classic_pagination plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Pagination'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

12 entries across 12 versions & 3 rubygems

Version Path
classic_pagination-1.0.4 Rakefile
classic_pagination-1.0.3 Rakefile
parlement-0.17 vendor/plugins/classic_pagination/Rakefile
typo-5.0.2 vendor/plugins/classic_pagination/Rakefile
typo-5.0.1 vendor/plugins/classic_pagination/Rakefile
typo-5.0.3.98.1 vendor/plugins/classic_pagination/Rakefile
typo-5.0.3.98 vendor/plugins/classic_pagination/Rakefile
typo-5.0 vendor/plugins/classic_pagination/Rakefile
typo-5.1.1 vendor/plugins/classic_pagination/Rakefile
typo-5.1.2 vendor/plugins/classic_pagination/Rakefile
typo-5.1.3 vendor/plugins/classic_pagination/Rakefile
typo-5.1 vendor/plugins/classic_pagination/Rakefile