File: Rakefile

package info (click to toggle)
ruby-guard-compat 1.2.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 140 kB
  • sloc: ruby: 350; makefile: 3
file content (10 lines) | stat: -rw-r--r-- 239 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
require 'bundler/gem_tasks'

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |t|
  t.verbose = false unless ENV.key?('CI')
end

require 'rubocop/rake_task'
RuboCop::RakeTask.new(:rubocop)
task default: [:spec, :rubocop]