##// END OF EJS Templates
Merged r15425 from trunk to 3.3-stable (#22809)...
Merged r15425 from trunk to 3.3-stable (#22809) Korean translation updated by Yonghwan SO. git-svn-id: http://svn.redmine.org/redmine/branches/3.3-stable@15427 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9351:8d73ddf73ffc
r15045:bdd32b04c2d9
Show More
Rakefile
22 lines | 584 B | text/x-ruby | RubyLexer
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
desc 'Default: run unit tests.'
task :default => :test
desc 'Test the open_id_authentication plugin.'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.pattern = 'test/**/*_test.rb'
t.verbose = true
end
desc 'Generate documentation for the open_id_authentication plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'OpenIdAuthentication'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README')
rdoc.rdoc_files.include('lib/**/*.rb')
end