public
Description: A rails plugin that simulates some of the old scaffold funcionality, but using RESTful controllers, will_paginate for pagination and enforces the model first approach
Homepage: http://www.urubatan.info/tag/mydry/
Clone URL: git://github.com/urubatan/mydry.git
Click here to lend your support to: mydry and make a donation at www.pledgie.com !
urubatan (author)
Sat Apr 26 09:55:27 -0700 2008
commit  2d43bd6a61e616676408d4f41337c96a8e23345d
tree    f742d4d925346847e11e4cc06f0019f39f74fb1f
parent  2215063dfdbd2107c5406de389e50caaebb28dea
mydry / Rakefile
100644 23 lines (19 sloc) 0.535 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 mydry plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for the mydry plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'Mydry'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end