1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2025-06-26 02:30:22 +02:00

gem: add rubocop

This commit is contained in:
cn
2018-02-23 11:13:28 +01:00
parent fc7a1cabd3
commit 9a7c20babb
4 changed files with 325 additions and 1 deletions

View File

@ -1,6 +1,8 @@
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
RSpec::Core::RakeTask.new(:spec)
RuboCop::RakeTask.new
task :default => :spec
task :default => [:rubocop, :spec]