25 lines
487 B
Ruby
25 lines
487 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 = 'GrapeDevise'
|
|
rdoc.options << '--line-numbers'
|
|
rdoc.rdoc_files.include('README.rdoc')
|
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
end
|
|
|
|
require 'rspec/core/rake_task'
|
|
|
|
RSpec::Core::RakeTask.new(:spec)
|
|
|
|
|
|
Bundler::GemHelper.install_tasks
|
|
|
|
|
|
task default: :spec
|