From c5c2732cc9ebf21d0dc41d2c6ea6d623b8d6c8d7 Mon Sep 17 00:00:00 2001 From: Bartosz Polaczyk Date: Sun, 16 Jan 2022 12:56:35 +0100 Subject: [PATCH 1/2] Expose prettify_meta_files and disable_certificate_verification to .rcinfo --- .../lib/cocoapods-xcremotecache/command/hooks.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cocoapods-plugin/lib/cocoapods-xcremotecache/command/hooks.rb b/cocoapods-plugin/lib/cocoapods-xcremotecache/command/hooks.rb index 8513bda6..9a045486 100644 --- a/cocoapods-plugin/lib/cocoapods-xcremotecache/command/hooks.rb +++ b/cocoapods-plugin/lib/cocoapods-xcremotecache/command/hooks.rb @@ -29,6 +29,7 @@ module Hooks LLDB_INIT_PATH = "#{ENV['HOME']}/.lldbinit" FAT_ARCHIVE_NAME_INFIX = 'arm64-x86_64' + # List of plugins' user properties that should be copied to .rcinfo CUSTOM_CONFIGURATION_KEYS = [ 'enabled', 'xcrc_location', @@ -37,7 +38,9 @@ module Hooks 'final_target', 'check_build_configuration', 'check_platform', - 'modify_lldb_init' + 'modify_lldb_init', + 'prettify_meta_files', + 'disable_certificate_verification' ] class XCRemoteCache @@ -338,7 +341,6 @@ def self.save_lldbinit_rewrite(user_proj_directory) end validate_configuration() - disable_certificate_verification = @@configuration['disable_certificate_verification'] mode = @@configuration['mode'] xccc_location = @@configuration['xccc_file'] remote_commit_file = @@configuration['remote_commit_file'] From dc0a82058b1bb42c2269e30d4d30691ec1e6a911 Mon Sep 17 00:00:00 2001 From: Bartosz Polaczyk Date: Sun, 16 Jan 2022 12:56:46 +0100 Subject: [PATCH 2/2] Bump plugin version --- cocoapods-plugin/lib/cocoapods-xcremotecache/gem_version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cocoapods-plugin/lib/cocoapods-xcremotecache/gem_version.rb b/cocoapods-plugin/lib/cocoapods-xcremotecache/gem_version.rb index 3bd8534a..06f4bf08 100644 --- a/cocoapods-plugin/lib/cocoapods-xcremotecache/gem_version.rb +++ b/cocoapods-plugin/lib/cocoapods-xcremotecache/gem_version.rb @@ -13,5 +13,5 @@ # limitations under the License. module CocoapodsXcremotecache - VERSION = "0.0.4" + VERSION = "0.0.5" end