Add irs_process_scripts plugin to replace process control scripts used

by live site which were dropped in rails 2.3 core.
This commit is contained in:
Tom Hughes 2009-06-15 11:32:41 +00:00
parent 00da8a9712
commit 719a06fdfa
14 changed files with 522 additions and 0 deletions

View file

@ -0,0 +1,23 @@
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
desc 'Default: run unit tests.'
task :default => :test
desc 'Test the irs_process_scripts 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 irs_process_scripts plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'IrsProcessScripts'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README')
rdoc.rdoc_files.include('lib/**/*.rb')
end