Skip to content

Commit

Permalink
Rely on requiring rubocop-ast in extension
Browse files Browse the repository at this point in the history
Extensions are loaded before the host application, and we need to ensure
we patch the class before the macros are used.
  • Loading branch information
sambostock committed Jan 26, 2024
1 parent a3fc3da commit 119a263
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/tapioca/dsl/extensions/rubocop.rb
@@ -1,7 +1,11 @@
# typed: strict
# frozen_string_literal: true

return unless defined?(RuboCop::AST::NodePattern::Macros)
begin
require "rubocop-ast"
rescue LoadError
return
end

module Tapioca
module Dsl
Expand Down

0 comments on commit 119a263

Please sign in to comment.