Skip to content

Commit 38d5902

Browse files
authored
Clean up Fastfile by removing obsolete monkey-patch
Removed monkey-patch for gym to handle app-store rename.
1 parent d2da57c commit 38d5902

1 file changed

Lines changed: 0 additions & 15 deletions

File tree

fastlane/Fastfile

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -95,21 +95,6 @@ platform :ios do
9595
targets: ["extension"]
9696
)
9797

98-
# Xcode 26 renamed 'app-store' to 'app-store-connect' in ExportOptions.plist.
99-
# Monkey-patch gym to emit the new value since fastlane hasn't been updated yet.
100-
require 'gym'
101-
::Gym::PackageCommandGeneratorXcode7.class_eval do
102-
class << self
103-
alias_method :original_config_content, :config_content unless method_defined?(:original_config_content)
104-
def config_content
105-
content = original_config_content
106-
hash = Plist.parse_xml(content)
107-
hash['method'] = {} if hash['method'] == 'app-store'
108-
Plist::Emit.dump(hash)
109-
end
110-
end
111-
end
112-
11398
gym(
11499
configuration: "Release",
115100
project: "Code.xcodeproj",

0 commit comments

Comments
 (0)