Show More
Commit Description:
renamed model Configuration to GraderConfiguration, renamed rhtml views to erb, fixed other small errors
Commit Description:
renamed model Configuration to GraderConfiguration, renamed rhtml views to erb, fixed other small errors
References:
File last commit:
Show/Diff file:
Action:
vendor/plugins/verification/Rakefile
| 22 lines
| 552 B
| text/x-ruby
| RubyLexer
|
|
r319 | require 'rake' | ||
require 'rake/testtask' | ||||
require 'rdoc/task' | ||||
desc 'Default: run unit tests.' | ||||
task :default => :test | ||||
desc 'Test the verification plugin.' | ||||
Rake::TestTask.new(:test) do |t| | ||||
t.libs << 'lib' | ||||
t.libs << 'test' | ||||
t.pattern = 'test/**/*_test.rb' | ||||
end | ||||
desc 'Generate documentation for the verification plugin.' | ||||
Rake::RDocTask.new(:rdoc) do |rdoc| | ||||
rdoc.rdoc_dir = 'rdoc' | ||||
rdoc.title = 'Verification' | ||||
rdoc.options << '--line-numbers' << '--inline-source' | ||||
rdoc.rdoc_files.include('README') | ||||
rdoc.rdoc_files.include('lib/**/*.rb') | ||||
end | ||||