pod-builder 2.0.0.beta.38 → 2.0.0.beta.39
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 +4 -4
- data/lib/pod_builder/podfile_item.rb +7 -1
- data/lib/pod_builder/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f1a4e26182b712538e25c3d25a6b672485626bf5fba20db3fd7f6857aa65feeb
|
4
|
+
data.tar.gz: 13d479f9b5707424937418b03a0f4f0d54bac9b4f546b648192fe5fed95ed499
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4aa3f53f9778cb53901f560c7ce9af36eed3637e8340e8ef3fd4ee96a4c4447627c5fa966dc1a6d7d485bf084307821a79203bae191384f50e245fcad5b66e2
|
7
|
+
data.tar.gz: 6848089c51216aef7d107be05b4c95a4ccc9ea8d090fd2ab793664cb52c5c5d0d3613ecc93fca67b1bc3798b8430e6d22635c20c8cf84638739b52269f8fc9f5
|
@@ -154,7 +154,7 @@ module PodBuilder
|
|
154
154
|
@tag = checkout_options[opts_key][:tag]
|
155
155
|
@commit = checkout_options[opts_key][:commit]
|
156
156
|
@path = checkout_options[opts_key][:path]
|
157
|
-
@podspec_path = checkout_options[opts_key][:podspec]
|
157
|
+
@podspec_path = checkout_options[opts_key][:podspec]
|
158
158
|
@branch = checkout_options[opts_key][:branch]
|
159
159
|
@is_external = true
|
160
160
|
else
|
@@ -213,6 +213,12 @@ module PodBuilder
|
|
213
213
|
@is_static = spec.root.attributes_hash["static_framework"] || false
|
214
214
|
@xcconfig = spec.root.attributes_hash["xcconfig"] || {}
|
215
215
|
|
216
|
+
if spec.attributes_hash.has_key?("script_phases")
|
217
|
+
Configuration.skip_pods += [name, root_name]
|
218
|
+
Configuration.skip_pods.uniq!
|
219
|
+
puts "Will skip '#{root_name}' which defines script_phase in podspec".blue
|
220
|
+
end
|
221
|
+
|
216
222
|
default_subspecs_specs ||= begin
|
217
223
|
subspecs = all_specs.select { |t| t.name.split("/").first == @root_name }
|
218
224
|
subspecs.select { |t| @default_subspecs.include?(t.name.split("/").last) }
|
data/lib/pod_builder/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pod-builder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.0.beta.
|
4
|
+
version: 2.0.0.beta.39
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tomas Camin
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-10-
|
11
|
+
date: 2020-10-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|