Sha256: 1753c855c87ce3e9790f8bf05ab3808f88aac19a8b9e28b84701eadc3a451999

Contents?: true

Size: 525 Bytes

Versions: 49

Compression:

Stored size: 525 Bytes

Contents

# frozen_string_literal: true

require "bundler/gem_tasks"
require "bundler/audit/task"
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)
Bundler::Audit::Task.new

task default: :rspec

Version data entries

49 entries across 49 versions & 2 rubygems

Version Path
table_sync-1.11.0 Rakefile
table_sync-1.10.0 Rakefile
table_sync-1.9.0 Rakefile
table_sync-1.8.0 Rakefile
table_sync-1.7.0 Rakefile
table_sync-1.6.0 Rakefile
table_sync-1.5.0 Rakefile
table_sync-1.4.0 Rakefile
rabbit_messaging-0.6.0 Rakefile