heartcombo--simple_form/Rakefile

28 lines
632 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'
require 'rake/rdoctask'
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.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'SimpleForm'
rdoc.options << '--line-numbers' << '--inline-source'
2011-01-06 09:54:37 +00:00
rdoc.rdoc_files.include('README.rdoc')
2009-11-18 17:45:35 +00:00
rdoc.rdoc_files.include('lib/**/*.rb')
end