cocoapods-xcremotecache 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b58e25578f13afa21cbe4320803261ddd4bb144480d555563bfd26cd2f409347
4
- data.tar.gz: 3c7c2bcd2bf9134f3473aac6c28e065f3f2de64c8c2c30ac2a368b817f8d7cad
3
+ metadata.gz: 073bb6eb42ef3ca4b2911ecf1a22f57d3fee56b4ca151446b542c1e2a8ea95bd
4
+ data.tar.gz: 3baa31150bb89f06635781eaae290b9b998776f0e0d5f099fa93197a84034de9
5
5
  SHA512:
6
- metadata.gz: 50a2ca5de999de57e11147b6511599fe2c5413fd45747eb15571bedda6aed45570cdb0d07815de9f2ac572146268f6918c4a04382386aa6c2f4c60ca6f881523
7
- data.tar.gz: e1f2fdb634554efa408032bcff276a17c8a0ae21b9f3fd285424abe689764cec62e25480e91828b5adde2ada934227e005b30e3d8c85432a331d5642dabf57d7
6
+ metadata.gz: 3a1a857abfdd8231b6eeaaeb626bd0b446bd58176b03143e0d1c292c78b2bd56c8f1e567293708f71518c91f6869326f726b20582286172b68de6f657198bebc
7
+ data.tar.gz: 987ecea74817a95bf1b1bda403e17d2494d65cc6e5c8c24666f239ae3fd83721474405e5fe3daa87112bb725346432019f6892f0a0ce327741890d449554aa58
data/README.md CHANGED
@@ -53,6 +53,7 @@ An object that is passed to the `xcremotecache` can contain all properties suppo
53
53
  | `xccc_file` | The path where should be placed the `xccc` binary (in the pod installation phase) | `{podfile_dir}/.rc/xccc` | ⬜️ |
54
54
  | `remote_commit_file` | The path of the file with the remote commit sha (in the pod installation phase) | `{podfile_dir}/.rc/arc.rc`| ⬜️ |
55
55
  | `prettify_meta_files` | A Boolean value that opts-in pretty JSON formatting for meta files | `false` | ⬜️ |
56
+ | `disable_certificate_verification` | A Boolean value that opts-in SSL certificate validation is disabled | `false` | ⬜️ |
56
57
 
57
58
  ## Uninstalling
58
59
 
@@ -29,6 +29,7 @@ module CocoapodsXCRemoteCacheModifier
29
29
  LLDB_INIT_PATH = "#{ENV['HOME']}/.lldbinit"
30
30
  FAT_ARCHIVE_NAME_INFIX = 'arm64-x86_64'
31
31
 
32
+ # List of plugins' user properties that should be copied to .rcinfo
32
33
  CUSTOM_CONFIGURATION_KEYS = [
33
34
  'enabled',
34
35
  'xcrc_location',
@@ -37,7 +38,9 @@ module CocoapodsXCRemoteCacheModifier
37
38
  'final_target',
38
39
  'check_build_configuration',
39
40
  'check_platform',
40
- 'modify_lldb_init'
41
+ 'modify_lldb_init',
42
+ 'prettify_meta_files',
43
+ 'disable_certificate_verification'
41
44
  ]
42
45
 
43
46
  class XCRemoteCache
@@ -59,7 +62,8 @@ module CocoapodsXCRemoteCacheModifier
59
62
  'xccc_file' => "#{BIN_DIR}/xccc",
60
63
  'remote_commit_file' => "#{BIN_DIR}/arc.rc",
61
64
  'exclude_targets' => [],
62
- 'prettify_meta_files' => false
65
+ 'prettify_meta_files' => false,
66
+ 'disable_certificate_verification' => false
63
67
  }
64
68
  @@configuration.merge! default_values.select { |k, v| !@@configuration.key?(k) }
65
69
  end
@@ -337,7 +341,6 @@ module CocoapodsXCRemoteCacheModifier
337
341
  end
338
342
 
339
343
  validate_configuration()
340
-
341
344
  mode = @@configuration['mode']
342
345
  xccc_location = @@configuration['xccc_file']
343
346
  remote_commit_file = @@configuration['remote_commit_file']
@@ -13,5 +13,5 @@
13
13
  # limitations under the License.
14
14
 
15
15
  module CocoapodsXcremotecache
16
- VERSION = "0.0.4"
16
+ VERSION = "0.0.5"
17
17
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-xcremotecache
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bartosz Polaczyk
8
8
  - Mark Vasiv
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-01-06 00:00:00.000000000 Z
12
+ date: 2022-01-19 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: CocoaPods plugin that enables XCRemoteCache with the project.
15
15
  email:
@@ -34,7 +34,7 @@ homepage: https://github.com/spotify/XCRemoteCache
34
34
  licenses:
35
35
  - Apache-2.0
36
36
  metadata: {}
37
- post_install_message:
37
+ post_install_message:
38
38
  rdoc_options: []
39
39
  require_paths:
40
40
  - lib
@@ -49,8 +49,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
49
  - !ruby/object:Gem::Version
50
50
  version: '0'
51
51
  requirements: []
52
- rubygems_version: 3.2.3
53
- signing_key:
52
+ rubygems_version: 3.2.32
53
+ signing_key:
54
54
  specification_version: 4
55
55
  summary: A simple plugin that attaches to the post_install hook and modifies the generated
56
56
  project to use XCRemoteCache. Supports both producing anc consuming parts.