Codebase list ruby-gitlab / c3be38b Rakefile
c3be38b

Tree @c3be38b (Download .tar.gz)

Rakefile @c3be38braw · history · blame

# 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