cocoapods-swordfish 1.0.0 → 1.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
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d3f714c81551387edbdc53c3587d6d416af72c2214f17264346b948475bd8e5
|
4
|
+
data.tar.gz: 4c8ea2ef3f94b56f2861d42fe3c0f5827d68db657c8ec50abd3babe8f7d1168a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6164d420ba03f1e018555224496327cb963eeca2675e0f1ce63f4f7dcb74d656617803c0b6a04f3f4e634fdea47c48bfe066c2b745417b88812b3f6abdde1e82
|
7
|
+
data.tar.gz: 06d0f4efcf328b1de7fc0c7520566a937a5bc9e8d6dc74c8de78d6fbf1bd1eec01069f6aefa00fa442ee00a04049bc5d2191cf74646a8fd9755854e885a3d1fb
|
data/lib/gem_version.rb
CHANGED
@@ -13,7 +13,7 @@ module Ocean
|
|
13
13
|
{
|
14
14
|
'configuration_env' => { description: '编译环境', default: 'dev', selection: %w[dev debug_iphoneos release_iphoneos] },
|
15
15
|
#'code_repo_url' => { description: '源码私有源 Git 地址', default: 'https://gitlab.lizhi.fm/iOSPods/pod_binary_spec_source.git' },
|
16
|
-
'binary_repo_url' => { description: '二进制私有源 Git 地址', default: '
|
16
|
+
'binary_repo_url' => { description: '二进制私有源 Git 地址', default: 'git@gitlab.lizhi.fm:iOSPods/pod_binary_spec.git' },
|
17
17
|
'binary_download_url' => { description: '二进制下载地址,内部会依次传入组件名称与版本,替换字符串中的 %s ', default: 'http://192.168.33.15:8080/frameworks/%s/%s/zip' },
|
18
18
|
# 'binary_type' => { description: '二进制打包类型', default: 'framework', selection: %w[framework library] },
|
19
19
|
'download_file_type' => { description: '下载二进制文件类型', default: 'zip', selection: %w[zip tgz tar tbz txz dmg] }
|
@@ -0,0 +1,19 @@
|
|
1
|
+
|
2
|
+
require 'swordfish/native/installation_options'
|
3
|
+
|
4
|
+
module Pod
|
5
|
+
class Installer
|
6
|
+
# class PodSourceInstaller
|
7
|
+
class PodSourceDownloader
|
8
|
+
attr_accessor :installation_options
|
9
|
+
|
10
|
+
alias old_verify_source_is_secure verify_source_is_secure
|
11
|
+
def verify_source_is_secure(root_spec)
|
12
|
+
# http source 默认不警告
|
13
|
+
if installation_options.warn_for_unsecure_source?
|
14
|
+
old_verify_source_is_secure(root_spec)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -1,17 +1,28 @@
|
|
1
1
|
|
2
2
|
|
3
3
|
require 'swordfish/native/installation_options'
|
4
|
+
require 'swordfish/native/pod_source_downloader'
|
4
5
|
|
5
6
|
module Pod
|
6
7
|
class Installer
|
7
8
|
class PodSourceInstaller
|
9
|
+
# class PodSourceDownloader
|
8
10
|
attr_accessor :installation_options
|
9
11
|
|
10
|
-
alias old_verify_source_is_secure verify_source_is_secure
|
11
|
-
def verify_source_is_secure(root_spec)
|
12
|
-
|
13
|
-
|
14
|
-
|
12
|
+
# alias old_verify_source_is_secure verify_source_is_secure
|
13
|
+
# def verify_source_is_secure(root_spec)
|
14
|
+
# # http source 默认不警告
|
15
|
+
# if installation_options.warn_for_unsecure_source?
|
16
|
+
# old_verify_source_is_secure(root_spec)
|
17
|
+
# end
|
18
|
+
# end
|
19
|
+
|
20
|
+
alias old_download_source download_source
|
21
|
+
def download_source
|
22
|
+
unless downloaded?
|
23
|
+
downloader = PodSourceDownloader.new(sandbox, podfile, specs_by_platform, :can_cache => can_cache?)
|
24
|
+
downloader.installation_options = installation_options
|
25
|
+
downloader.download!
|
15
26
|
end
|
16
27
|
end
|
17
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-swordfish
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- lizhi
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-10-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: parallel
|
@@ -127,6 +127,7 @@ files:
|
|
127
127
|
- lib/swordfish/native/installer.rb
|
128
128
|
- lib/swordfish/native/linter.rb
|
129
129
|
- lib/swordfish/native/path_source.rb
|
130
|
+
- lib/swordfish/native/pod_source_downloader.rb
|
130
131
|
- lib/swordfish/native/pod_source_installer.rb
|
131
132
|
- lib/swordfish/native/pod_target_installer.rb
|
132
133
|
- lib/swordfish/native/podfile.rb
|
@@ -144,7 +145,7 @@ homepage: https://github.com/EXAMPLE/swordfish
|
|
144
145
|
licenses: []
|
145
146
|
metadata:
|
146
147
|
homepage_uri: https://github.com/EXAMPLE/swordfish
|
147
|
-
post_install_message:
|
148
|
+
post_install_message:
|
148
149
|
rdoc_options: []
|
149
150
|
require_paths:
|
150
151
|
- lib
|
@@ -159,8 +160,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
159
160
|
- !ruby/object:Gem::Version
|
160
161
|
version: '0'
|
161
162
|
requirements: []
|
162
|
-
rubygems_version: 3.
|
163
|
-
signing_key:
|
163
|
+
rubygems_version: 3.1.6
|
164
|
+
signing_key:
|
164
165
|
specification_version: 4
|
165
166
|
summary: swordfish编译加速插件.
|
166
167
|
test_files: []
|