cocoapods-fix-module-universal 0.0.1 → 0.0.2
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
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 27eac2a28258604222ccdfc4f6c51301d5ba37c38a091d9e5eb73c73d376f909
|
|
4
|
+
data.tar.gz: b45a564669896ae246e9956f081710f1ad953f325753170ed9c26657a17109fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fe747ebf4229d5a71ca28a018c729de466dcc0703602f5769fc4506c95a6284d1fec5f22dd545bb13d15c2537019d4951193a23f89c263eaa58b012c1d2ae23a
|
|
7
|
+
data.tar.gz: 35de214cfffb2171f9bb853c1899b4a625669eee4bb7201ba44a9b75b8f9e8f1fe14a686175186a83f24e763586138d3e2d3d6a730c7229fdb4b564d4fa0525d
|
|
@@ -33,9 +33,12 @@ module Pod
|
|
|
33
33
|
specs.each do |spec|
|
|
34
34
|
|
|
35
35
|
original_content = spec.attributes_hash["source_files"]
|
|
36
|
-
if original_content.
|
|
36
|
+
if original_content.nil?
|
|
37
|
+
original_content = []
|
|
38
|
+
elsif original_content.kind_of? String
|
|
37
39
|
original_content = [original_content]
|
|
38
40
|
end
|
|
41
|
+
|
|
39
42
|
raise "wrong type: #{original_content}" unless original_content.kind_of? Array
|
|
40
43
|
original_content << CocoapodsFixModuleUniversal.place_holder_file_name
|
|
41
44
|
spec.attributes_hash["source_files"] = original_content
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods-fix-module-universal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gao
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-04-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -76,8 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
76
76
|
- !ruby/object:Gem::Version
|
|
77
77
|
version: '0'
|
|
78
78
|
requirements: []
|
|
79
|
-
|
|
80
|
-
rubygems_version: 2.5.2.3
|
|
79
|
+
rubygems_version: 3.0.3
|
|
81
80
|
signing_key:
|
|
82
81
|
specification_version: 4
|
|
83
82
|
summary: fix the missing module of pod which have no source but binaries by adding
|