This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # frozen_string_literal: true | |
| namespace :rubocop do | |
| desc "Ensure there's a local copy of rubocop" | |
| file "tmp/rubocop" do | |
| sh "git clone --depth=1 https://github.com/rubocop/rubocop tmp/rubocop" | |
| end | |
| desc "Ensure we have a fixtures directory for the rubocop tests" | |
| file "test/prism/fixtures/rubocop" do |
OlderNewer