Codebase list ruby-gitlab / debian/4.17.0-3 Rakefile
debian/4.17.0-3

Tree @debian/4.17.0-3 (Download .tar.gz)

Rakefile @debian/4.17.0-3

9962458
 
c321896
dab36f1
 
 
 
 
 
c321896
 
 
 
 
9962458
# frozen_string_literal: true

require 'bundler/gem_tasks'

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.rspec_opts = ['--color', '--format d']
end

require 'rubocop/rake_task'
RuboCop::RakeTask.new(:rubocop) do |task|
  task.options = ['-D', '--parallel']
end

task default: :spec