heartcombo--simple_form/Rakefile

28 lines
601 B
Ruby
Raw Normal View History

# encoding: UTF-8
2011-02-06 21:33:44 +00:00
require 'bundler'
Bundler::GemHelper.install_tasks
2009-11-18 17:45:35 +00:00
require 'rake/testtask'
2011-08-11 02:52:23 +00:00
require 'rdoc/task'
2009-11-18 17:45:35 +00:00
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|
2009-11-18 17:45:35 +00:00
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'SimpleForm'
rdoc.options << '--line-numbers'
rdoc.rdoc_files.include('README.md')
2009-11-18 17:45:35 +00:00
rdoc.rdoc_files.include('lib/**/*.rb')
end