public
Description: Not scaffolding. Resourcing. Creates extremely customizable resource controllers with one line of code.
Clone URL: git://github.com/jnewland/resource_this.git
jnewland (author)
Mon Mar 03 13:51:18 -0800 2008
commit  5f3af150a298bb3fe0bb99f1709b139f3fd81a8d
tree    76cbe431b86efa0a3860d5c8f812dfd608f88dda
parent  0f80f8e919d74f95fa4e64759491b5654eed5ebe
resource_this / Rakefile
100644 14 lines (11 sloc) 0.266 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Test the resource_this plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end