cocoapods-tj 1.0.3 → 1.0.4
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/cocoapods-tj/gem_version.rb +1 -1
- data/lib/cocoapods-tj/helpers/spec_creator.rb +6 -6
- 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: b7d03903663bb1d8e65c11fe2578048affc8f94bbd1f501cde8c9e66fcf645cb
|
|
4
|
+
data.tar.gz: fc590a8ca824c19ced34ac0dabe945c99be7b8c71a84bb0a29c2448edb78c4f7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d67d358466a9b84bc987183e23a3465655771a93c1bffd45219da32dcc7d43365fe699d7de1c5b9f654a3ab169e350955fc32585cc40cc51576b41fece1772ee
|
|
7
|
+
data.tar.gz: 15e6bc19feb63787c6a78800e9b769414ce9223a6097c56f4c7509bf3b7369316e8d421ea4e4e9c4f46c6b8cc613bb57cfffa827bdf6359a8605119489ccd1a4
|
|
@@ -76,8 +76,8 @@ module CBin
|
|
|
76
76
|
@spec.source = binary_source
|
|
77
77
|
|
|
78
78
|
# Source Code
|
|
79
|
-
@spec.source_files =
|
|
80
|
-
@spec.public_header_files =
|
|
79
|
+
@spec.source_files = '*.h'
|
|
80
|
+
@spec.public_header_files = '*.h'
|
|
81
81
|
|
|
82
82
|
# Unused for binary
|
|
83
83
|
spec_hash = @spec.to_hash
|
|
@@ -124,11 +124,11 @@ module CBin
|
|
|
124
124
|
end
|
|
125
125
|
|
|
126
126
|
def framework_contents(name)
|
|
127
|
-
["#{code_spec.root.name}.framework"
|
|
127
|
+
["#{code_spec.root.name}.framework"].map { |path| "#{path}/#{name}" }
|
|
128
128
|
end
|
|
129
129
|
|
|
130
130
|
def framework_contents_root()
|
|
131
|
-
["#{code_spec.root.name}.framework"
|
|
131
|
+
["#{code_spec.root.name}.framework"]
|
|
132
132
|
end
|
|
133
133
|
|
|
134
134
|
def binary_source_files
|
|
@@ -136,11 +136,11 @@ module CBin
|
|
|
136
136
|
end
|
|
137
137
|
|
|
138
138
|
def binary_source_files
|
|
139
|
-
"bin_#{code_spec.name}_#{code_spec.version}
|
|
139
|
+
"bin_#{code_spec.name}_#{code_spec.version}/*"
|
|
140
140
|
end
|
|
141
141
|
|
|
142
142
|
def binary_public_header_files
|
|
143
|
-
"bin_#{code_spec.name}_#{code_spec.version}
|
|
143
|
+
"bin_#{code_spec.name}_#{code_spec.version}/*.h"
|
|
144
144
|
end
|
|
145
145
|
|
|
146
146
|
def binary_vendored_libraries
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods-tj
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- song
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-01-
|
|
11
|
+
date: 2023-01-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: parallel
|