Sha256: c868a51d19be8166812818af2d40454bbd5c91796105a67256892a73e0aeb502

Contents?: true

Size: 524 Bytes

Versions: 26

Compression:

Stored size: 524 Bytes

Contents

# frozen_string_literal: true

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop'
require 'rubocop/rake_task'
require 'rubocop-performance'
require 'rubocop-rspec'
require 'rubocop-rake'

RuboCop::RakeTask.new(:rubocop) do |t|
  config_path = File.expand_path(File.join('.rubocop.yml'), __dir__)
  t.options = ['--config', config_path]
  t.requires << 'rubocop-performance'
  t.requires << 'rubocop-rspec'
  t.requires << 'rubocop-rake'
end

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

task default: :rspec

Version data entries

26 entries across 26 versions & 7 rubygems

Version Path
smart_container-0.2.0 Rakefile
smart_container-0.1.0 Rakefile
smart_engine-0.2.0 Rakefile
smart_engine-0.1.0 Rakefile
gem_template_rb-0.1.0 Rakefile
siege-0.0.0 Rakefile