Sha256: 96aa841dc19343b3f76ef9b3e5eb9e605b7f46fd26f239730f2beffdec8a9125

Contents?: true

Size: 564 Bytes

Versions: 5

Compression:

Stored size: 564 Bytes

Contents

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

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

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

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

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
skylinecms-3.1.0 vendor/mootools-on-rails/Rakefile
westarete-skylinecms-3.0.8.20100329 vendor/mootools-on-rails/Rakefile
westarete-skylinecms-3.0.8.20100330 vendor/mootools-on-rails/Rakefile
skylinecms-3.0.8 vendor/mootools-on-rails/Rakefile
skylinecms-3.0.7 vendor/mootools-on-rails/Rakefile