1
0
Fork 0
mirror of https://github.com/heartcombo/simple_form.git synced 2022-11-09 12:19:26 -05:00
heartcombo--simple_form/Rakefile

31 lines
674 B
Text
Raw Normal View History

# encoding: UTF-8
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
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'
end