File: Rakefile

package info (click to toggle)
ruby-rubocop-ast 1.49.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,768 kB
  • sloc: ruby: 17,017; yacc: 90; makefile: 9
file content (54 lines) | stat: -rw-r--r-- 1,103 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# frozen_string_literal: true

task build: :generate
task release: 'changelog:check_clean'

require 'bundler'
require 'bundler/gem_tasks'

Dir['tasks/**/*.rake'].each { |t| load t }

begin
  Bundler.setup
rescue Bundler::BundlerError => e
  warn e.message
  warn 'Run `bundle install` to install missing gems'
  exit e.status_code
end

require 'rspec/core/rake_task'

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

desc 'Run RSpec code examples with Prism'
task prism_spec: :generate do
  original_parser_engine = ENV.fetch('PARSER_ENGINE', nil)

  RSpec::Core::RakeTask.new(prism_spec: :generate) do |spec|
    ENV['PARSER_ENGINE'] = 'parser_prism'

    spec.pattern = FileList['spec/**/*_spec.rb']
  end

  ENV['PARSER_ENGINE'] = original_parser_engine
end

desc 'Run RSpec with code coverage'
task :coverage do
  ENV['COVERAGE'] = 'true'
  Rake::Task['spec'].execute
end

desc 'Run RuboCop over itself'
task internal_investigation: :generate do
  sh 'rubocop'
end

task default: %i[
  codespell
  spec
  prism_spec
  internal_investigation
]