cocoapods-packager-ext 0.0.25 → 0.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 23cd72018e39de209dccf062d026da054ae4019c38b0fb57ca0a7437efd4b565
|
|
4
|
+
data.tar.gz: ed3fc72518c0d7163c9ed6a19d760c28d76968890bd7047611807f9852e41ade
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b9a31f722da895eb96d120a86f408b5e2ae97e4a48da9fdc41ed1e88335e1a655e5156d8fc2721e5f3d6a4cc3c3784c7dd9d488e44c248e1d19f8f5259629e37
|
|
7
|
+
data.tar.gz: b8f915b856efeed8eeff81368bfe086323083469f05f6d73bbf85f9a225b5a9932d57c406ed32647a3151cb6f3374c4751a4071b5bc9215c00baa0ba882ba81a
|
|
@@ -20,6 +20,6 @@ Gem::Specification.new do |spec|
|
|
|
20
20
|
|
|
21
21
|
spec.add_development_dependency 'bundler', '~> 1.3'
|
|
22
22
|
spec.add_development_dependency 'rake'
|
|
23
|
-
spec.add_runtime_dependency(%q<cocoapods-packager>.freeze,["1.5.1"])
|
|
23
|
+
spec.add_runtime_dependency(%q<cocoapods-packager>.freeze,["1.5.1.alpha.0"])
|
|
24
24
|
|
|
25
25
|
end
|
|
@@ -65,7 +65,8 @@ module Pod
|
|
|
65
65
|
begin
|
|
66
66
|
perform_build(platform, static_sandbox, dynamic_sandbox, static_installer)
|
|
67
67
|
ensure # in case the build fails; see Builder#xcodebuild.
|
|
68
|
-
if
|
|
68
|
+
if ENV['ENABLE_BACKUP_WORKSPACE'] && (ENV['ENABLE_BACKUP_WORKSPACE'].upcase == 'YES' || ENV['ENABLE_BACKUP_WORKSPACE'].upcase == 'TRUE')
|
|
69
|
+
else
|
|
69
70
|
Pathname.new(config.sandbox_root).rmtree
|
|
70
71
|
FileUtils.rm_f('Podfile.lock')
|
|
71
72
|
end
|
|
@@ -61,7 +61,7 @@ module Pod
|
|
|
61
61
|
end
|
|
62
62
|
|
|
63
63
|
def ios_build_options
|
|
64
|
-
if ENV['DISABLE_BITCODE']
|
|
64
|
+
if ENV['DISABLE_BITCODE'] && (ENV['DISABLE_BITCODE'].upcase == 'YES' || ENV['DISABLE_BITCODE'].upcase == 'TRUE')
|
|
65
65
|
"ARCHS=\'#{ios_architectures.join(' ')}\' OTHER_CFLAGS=\'-Qunused-arguments\'"
|
|
66
66
|
else
|
|
67
67
|
"ARCHS=\'#{ios_architectures.join(' ')}\' OTHER_CFLAGS=\'-fembed-bitcode -Qunused-arguments\'"
|
|
@@ -45,7 +45,7 @@ module Pod
|
|
|
45
45
|
config.build_settings['USER_HEADER_SEARCH_PATHS'] = "$(inherited) #{header_path}"
|
|
46
46
|
config.build_settings['OTHER_LDFLAGS'] = '$(inherited) -ObjC'
|
|
47
47
|
|
|
48
|
-
if ENV['DISABLE_BITCODE']
|
|
48
|
+
if ENV['DISABLE_BITCODE'] && (ENV['DISABLE_BITCODE'].upcase == 'YES' || ENV['DISABLE_BITCODE'].upcase == 'TRUE')
|
|
49
49
|
config.build_settings['ENABLE_BITCODE'] = 'NO'
|
|
50
50
|
end
|
|
51
51
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods-packager-ext
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.26
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- kyle.zhou
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-05-
|
|
11
|
+
date: 2021-05-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -44,14 +44,14 @@ dependencies:
|
|
|
44
44
|
requirements:
|
|
45
45
|
- - '='
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 1.5.1
|
|
47
|
+
version: 1.5.1.alpha.0
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - '='
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 1.5.1
|
|
54
|
+
version: 1.5.1.alpha.0
|
|
55
55
|
description: A short description of cocoapods-packager-ext.
|
|
56
56
|
email:
|
|
57
57
|
- kyle.zhou@qq.com
|