Skip to content

Commit

Permalink
Corrige carregamento do ActiveSupport (#78)
Browse files Browse the repository at this point in the history
Conforme [comentado nessa issue](CocoaPods/CocoaPods#12089 (comment)), o ActiveSupport 7.1 mudou sua API e agora carrega apenas as dependências mínimas. 
Foi preciso adicionar o  `require "active_support"` e o `require "active_support/core_ext"` para o "extractor" funcionar.
  • Loading branch information
adriely-dourado committed Nov 30, 2023
1 parent b90ff9b commit 2ad6453
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/src/extractor.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# frozen_string_literal: true

require "cgi"
require "active_support/core_ext/string"
require "active_support"
require "active_support/core_ext"
require_relative "format/formatter"

class PathBuilder < Struct.new(:base, :parent, :tag, keyword_init: true)
Expand Down

0 comments on commit 2ad6453

Please sign in to comment.