mirror of
https://github.com/samsonjs/instapaper.git
synced 2026-03-25 08:55:49 +00:00
15 lines
261 B
Ruby
Executable file
15 lines
261 B
Ruby
Executable file
require 'bundler'
|
|
Bundler::GemHelper.install_tasks
|
|
|
|
require 'rspec/core/rake_task'
|
|
RSpec::Core::RakeTask.new(:spec)
|
|
|
|
task test: :spec
|
|
|
|
require 'rubocop/rake_task'
|
|
RuboCop::RakeTask.new
|
|
|
|
require 'yard'
|
|
YARD::Rake::YardocTask.new
|
|
|
|
task default: [:spec, :rubocop]
|