Sha256: 16e685c0fedfba4e004fb5422f11cf643abd9ec2e898d8b9736c80f522398895

Contents?: true

Size: 595 Bytes

Versions: 10

Compression:

Stored size: 595 Bytes

Contents

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

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

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

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

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
typo-4.1.1 vendor/plugins/typo_textfilter_sparkline/Rakefile
typo-5.0.1 vendor/plugins/typo_textfilter_sparkline/Rakefile
typo-4.1 vendor/plugins/typo_textfilter_sparkline/Rakefile
typo-5.0.2 vendor/plugins/typo_textfilter_sparkline/Rakefile
typo-5.0.3.98.1 vendor/plugins/typo_textfilter_sparkline/Rakefile
typo-5.0 vendor/plugins/typo_textfilter_sparkline/Rakefile
typo-5.0.3.98 vendor/plugins/typo_textfilter_sparkline/Rakefile
typo-5.1.2 vendor/plugins/typo_textfilter_sparkline/Rakefile
typo-5.1.1 vendor/plugins/typo_textfilter_sparkline/Rakefile
typo-5.1 vendor/plugins/typo_textfilter_sparkline/Rakefile