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 +4 -4
- data/README.md +1 -0
- data/lib/cocoapods-xcremotecache/command/hooks.rb +6 -3
- data/lib/cocoapods-xcremotecache/gem_version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 073bb6eb42ef3ca4b2911ecf1a22f57d3fee56b4ca151446b542c1e2a8ea95bd
|
4
|
+
data.tar.gz: 3baa31150bb89f06635781eaae290b9b998776f0e0d5f099fa93197a84034de9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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']
|
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
|
+
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-
|
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.
|
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.
|