backplane-dns-client/Rakefile
2020-11-15 20:56:48 -08:00

13 lines
204 B
Ruby

require "rubocop/rake_task"
task default: %w[lint]
task :run do
ruby "lib/dns-client.rb"
end
RuboCop::RakeTask.new(:lint) do |task|
task.patterns = ['lib/**/*.rb']
task.fail_on_error = false
end