Sha256: 43d628da3f13018bc481bdb7e7f2547d53cefdd21c435952c99086cf8468b2de

Contents?: true

Size: 482 Bytes

Versions: 7

Compression:

Stored size: 482 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: %i[rubocop rspec]

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
polist-1.4.0 Rakefile
hourly_logger_rotator-0.4.0.60 Rakefile
threaded_logging-1.0.1 Rakefile
threaded_logging-1.0.0 Rakefile
threaded_logging-1.0.0.19 Rakefile
hourly_logger_rotator-0.3.0.54 Rakefile
threaded_logging-0.2.1.16 Rakefile