Take the 2008 Git User's Survey and help out! [ hide ]

public
Description: Not scaffolding. Resourcing. Creates extremely customizable resource controllers with one line of code.
Clone URL: git://github.com/jnewland/resource_this.git
Search Repo:
jnewland (author)
Sun Sep 16 12:03:44 -0700 2007
commit  6668104fd3780a0aa8686b9bce2224bd8d10cf88
tree    a82564a08017f058372af104f4e6604438bd97f7
parent  eaaaf7499745419dace8337c642a147efc74622e
resource_this / Rakefile
100644 13 lines (11 sloc) 0.266 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
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