public
Description: MooTools On Rails is a plugin for Ruby On Rails. It aims to replace the default Javascript Librairies : Prototype and Script.aculo.us by MooTools (another great javascript library).
Homepage: http://www.mootoolsonrails.com/
Clone URL: git://github.com/pointcom/mootools-on-rails.git
pointcom (author)
Sat Oct 11 14:22:56 -0700 2008
commit  1a7a953e590ff5c678e97f3b3e4f263d01eb1380
tree    2a1cfee5609ec65da26c8d4792915b7c4edfe14e
parent  bafbd142320b9c4628031222d1be6ede4c5692de
mootools-on-rails / Rakefile
100755 23 lines (19 sloc) 0.564 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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