mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
20 lines
418 B
Text
20 lines
418 B
Text
|
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
|