heartcombo--simple_form/Rakefile

28 lines
601 B
Ruby
Raw Normal View History

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