public
Description: Simple easy contact form for Rails with I18n, validations, attachments and request information.
Homepage: http://blog.plataformatec.com.br/
Clone URL: git://github.com/josevalim/simple_form.git
Click here to lend your support to: simple_form and make a donation at www.pledgie.com !
simple_form / Rakefile
100644 20 lines (17 sloc) 0.52 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
desc 'Run tests for InheritedResources.'
Rake::TestTask.new(:test) do |t|
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for InheritedResources.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'SimpleForm'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('MIT-LICENSE')
  rdoc.rdoc_files.include('lib/**/*.rb')
end