Sha256: 2f96087aced41fbce9191e915d9a8bfbe1421eca8ce0064a111fb92871f5756e

Contents?: true

Size: 715 Bytes

Versions: 14

Compression:

Stored size: 715 Bytes

Contents

# frozen_string_literal: true

require "bundler/gem_tasks"
require "rspec/core/rake_task"

desc "Map rake test to rake spec"
task test: :spec

RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList["spec/**/*_spec.rb"]
end

desc "Generate a new cop with a template"
task :new_cop, [:cop] do |_task, args|
  require "rubocop"

  cop_name = args.fetch(:cop) do
    warn "usage: bundle exec rake 'new_cop[Boxt/Name]'"
    exit!
  end

  generator = RuboCop::Cop::Generator.new(cop_name)

  generator.write_source
  generator.write_spec
  generator.inject_require(root_file_path: "lib/rubocop/cop/boxt_cops.rb")
  generator.inject_config(config_file_path: "config/default.yml")

  puts generator.todo
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
boxt_rubocop-2.14.3 Rakefile
boxt_rubocop-2.14.2 Rakefile
boxt_rubocop-2.14.1 Rakefile
boxt_rubocop-2.14.0 Rakefile
boxt_rubocop-2.13.0 Rakefile
boxt_rubocop-2.12.0 Rakefile
boxt_rubocop-2.11.0 Rakefile
boxt_rubocop-2.10.0 Rakefile
boxt_rubocop-2.9.2 Rakefile
boxt_rubocop-2.9.1 Rakefile
boxt_rubocop-2.9.0 Rakefile
boxt_rubocop-2.8.0 Rakefile
boxt_rubocop-2.7.1 Rakefile
boxt_rubocop-2.7.0 Rakefile