Sha256: 3f03504dd3e52e05374accfe07cb374bf3d3ac781a13fbb209a36f970a970ae0

Contents?: true

Size: 471 Bytes

Versions: 3

Compression:

Stored size: 471 Bytes

Contents

# frozen_string_literal: true

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

RuboCop::RakeTask.new(:rubocop) do |t|
  config_path = File.expand_path(File.join(".rubocop.yml"), __dir__)

  t.options = ["--config", config_path]
  t.requires << "rubocop-rspec"
  t.requires << "rubocop-performance"
end

RSpec::Core::RakeTask.new(:rspec)

task default: :rspec

Version data entries

3 entries across 3 versions & 3 rubygems

Version Path
hourly_logger_rotator-0.3.0.52 Rakefile
threaded_logging-0.2.1.15 Rakefile
table_sync-0.0.0 Rakefile