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:
parent
00da8a9712
commit
719a06fdfa
14 changed files with 522 additions and 0 deletions
23
vendor/plugins/irs_process_scripts/Rakefile
vendored
Normal file
23
vendor/plugins/irs_process_scripts/Rakefile
vendored
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue