cocoapods-tdfire-binary 1.3.10 → 1.3.11
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a42d7594a035f08c4f44fc52698a825cbb3bffa
|
|
4
|
+
data.tar.gz: 9dd701d6a34e71f800591576da71bcf47be9f670
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ed3c4064974ed8c7548a5b10140135fecdafa7c821fa76691bb60b546d37b758adf38d5995af920586576b881e9816f2dfb21f6e2357d2b582bd206cd9adbb1b
|
|
7
|
+
data.tar.gz: 4d5ca90c5d556a421068a0fc79ab0deea11a51c46c0f21c5171671a1cab67e4def75820a258ec2ab62cb0136d413b776c35a9a4f466764891b833c2b63efb479
|
|
@@ -17,13 +17,15 @@ module Pod
|
|
|
17
17
|
def self.options
|
|
18
18
|
[
|
|
19
19
|
['--commit="Fix some bugs"', '发布的 commit 信息'],
|
|
20
|
-
['--binary-first', '二进制优先']
|
|
20
|
+
['--binary-first', '二进制优先'],
|
|
21
|
+
['--sources', '私有源地址']
|
|
21
22
|
].concat(super)
|
|
22
23
|
end
|
|
23
24
|
|
|
24
25
|
def initialize(argv)
|
|
25
26
|
spec_file = argv.shift_argument
|
|
26
27
|
@commit = argv.option('commit')
|
|
28
|
+
@sources = argv.option('sources')
|
|
27
29
|
|
|
28
30
|
spec_file = first_podspec if spec_file.nil?
|
|
29
31
|
@spec_file = spec_file
|
|
@@ -48,6 +50,7 @@ module Pod
|
|
|
48
50
|
argvs = [
|
|
49
51
|
private_sources.first.name,
|
|
50
52
|
@spec_file,
|
|
53
|
+
"--sources=#{@sources || Pod::Tdfire::BinaryUrlManager.private_cocoapods_url}",
|
|
51
54
|
'--allow-warnings',
|
|
52
55
|
'--use-libraries',
|
|
53
56
|
'--verbose'
|