Rakefile
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
- require 'rake'
- require 'rake/testtask'
- require 'rake/rdoctask'
- desc 'Default: run unit tests.'
- task :default => :test
- desc 'Test the typo_textfilter_code plugin.'
- Rake::TestTask.new(:test) do |t|
- t.libs << 'lib'
- t.pattern = 'test/**/*_test.rb'
- t.verbose = true
- end
- desc 'Generate documentation for the typo_textfilter_code plugin.'
- Rake::RDocTask.new(:rdoc) do |rdoc|
- rdoc.rdoc_dir = 'rdoc'
- rdoc.title = 'Typo-textfilter-code'
- rdoc.options << '--line-numbers' << '--inline-source'
- rdoc.rdoc_files.include('README')
- rdoc.rdoc_files.include('lib/**/*.rb')
- end