mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
19 lines
418 B
Ruby
19 lines
418 B
Ruby
begin
|
|
require 'bundler/setup'
|
|
rescue LoadError
|
|
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
|
end
|
|
|
|
require 'rdoc/task'
|
|
|
|
RDoc::Task.new(:rdoc) do |rdoc|
|
|
rdoc.rdoc_dir = 'rdoc'
|
|
rdoc.title = '${NAME}'
|
|
rdoc.options << '--line-numbers'
|
|
rdoc.rdoc_files.include('README.rdoc')
|
|
rdoc.rdoc_files.include('lib/**/**/*.rb')
|
|
end
|
|
|
|
Bundler::GemHelper.install_tasks
|
|
|
|
task default: :test
|