mirror of
https://github.com/cmur2/dyndnsd.git
synced 2024-11-16 18:56:14 +01:00
11 lines
246 B
Ruby
11 lines
246 B
Ruby
require 'bundler/gem_tasks'
|
|
require 'rspec/core/rake_task'
|
|
require 'rubocop/rake_task'
|
|
require 'bundler/audit/task'
|
|
|
|
RSpec::Core::RakeTask.new(:spec)
|
|
RuboCop::RakeTask.new
|
|
Bundler::Audit::Task.new
|
|
|
|
task default: [:rubocop, :spec, 'bundle:audit']
|