File: Rakefile

package info (click to toggle)
ruby-hashdiff 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 216 kB
  • sloc: ruby: 1,226; makefile: 4
file content (18 lines) | stat: -rw-r--r-- 335 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

$LOAD_PATH.push File.expand_path('lib', __dir__)

require 'rubocop/rake_task'

require 'bundler'
Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'

RuboCop::RakeTask.new

task default: %w[spec rubocop]

RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = './spec/**/*_spec.rb'
end