mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
27 lines
601 B
Ruby
27 lines
601 B
Ruby
# encoding: UTF-8
|
|
|
|
require 'bundler'
|
|
Bundler::GemHelper.install_tasks
|
|
|
|
require 'rake/testtask'
|
|
require 'rdoc/task'
|
|
|
|
desc 'Default: run unit tests.'
|
|
task :default => :test
|
|
|
|
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
|
|
|
|
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
|