2010-06-17 18:12:22 -04:00
|
|
|
# encoding: UTF-8
|
2011-02-06 15:25:15 -05:00
|
|
|
|
2013-05-08 09:19:51 -04:00
|
|
|
require 'bundler/gem_tasks'
|
2011-02-06 16:33:44 -05:00
|
|
|
|
2009-11-18 12:45:35 -05:00
|
|
|
require 'rake/testtask'
|
|
|
|
|
|
|
|
desc 'Default: run unit tests.'
|
2013-01-28 16:02:59 -05:00
|
|
|
task default: :test
|
2009-11-18 12:45:35 -05:00
|
|
|
|
|
|
|
desc 'Test the simple_form plugin.'
|
|
|
|
Rake::TestTask.new(:test) do |t|
|
|
|
|
t.libs << 'lib'
|
|
|
|
t.libs << 'test'
|
|
|
|
t.pattern = 'test/**/*_test.rb'
|
|
|
|
t.verbose = true
|
|
|
|
end
|
|
|
|
|
2013-12-15 16:19:15 -05:00
|
|
|
begin
|
|
|
|
require 'rdoc/task'
|
|
|
|
desc 'Generate documentation for the simple_form plugin.'
|
|
|
|
RDoc::Task.new(:rdoc) do |rdoc|
|
|
|
|
rdoc.rdoc_dir = 'rdoc'
|
|
|
|
rdoc.title = 'SimpleForm'
|
|
|
|
rdoc.options << '--line-numbers'
|
|
|
|
rdoc.rdoc_files.include('README.md')
|
|
|
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
|
|
end
|
|
|
|
rescue LoadError
|
|
|
|
puts 'RDoc::Task is not supported on this platform'
|
2011-02-06 15:25:15 -05:00
|
|
|
end
|