Add rakefile and rubocop config from other provider gems

This commit is contained in:
Jake Spain 2023-01-30 16:31:05 -05:00
parent 5787a82a0b
commit 405b52b2e1
No known key found for this signature in database
GPG key ID: BC1C4DA0A085E113
4 changed files with 85 additions and 12 deletions

14
spec/spec_helper.rb Normal file
View file

@ -0,0 +1,14 @@
# frozen_string_literal: true
require 'simplecov'
SimpleCov.start do
add_filter '/spec/'
end
def project_root_dir
File.dirname(File.dirname(__FILE__))
end
def fixtures_dir
File.join(project_root_dir, 'spec', 'fixtures')
end