You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/vendor/bundle/ruby/4.0.0/gems/hashdiff-1.2.1/Rakefile

19 lines
335 B

# 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