mirror of https://github.com/docusealco/docuseal
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.
19 lines
335 B
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
|