siebertm / ext_js_with_rails

This URL has Read+Write access

siebertm (author)
Thu May 01 03:42:40 -0700 2008
commit  a5f1ffa2d5edc84653c85a6033483ff9d73f788f
tree    cc2461ec1be0be0b515f3935e57a672baad42a21
parent  e248a760132bb97e01dc3620f50b69a46aff594e
ext_js_with_rails / Rakefile
100644 23 lines (19 sloc) 0.568 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 ext_js_with_rails plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for the ext_js_with_rails plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'ExtJSWithRails'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end