File: Rakefile

package info (click to toggle)
ruby-combustion 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 332 kB
  • sloc: ruby: 628; makefile: 9; sh: 6
file content (11 lines) | stat: -rw-r--r-- 288 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require "bundler/gem_tasks"
require "rspec/core/rake_task"
require "rubocop/rake_task"

RSpec::Core::RakeTask.new(:spec)
RuboCop::RakeTask.new(:rubocop)

Rake::Task["default"].clear if Rake::Task.task_defined?("default")
task :default => %i[ rubocop spec ]