cocoapods-swordfish 1.0.1 → 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: 34fe76b2dba492f0262215e6a24c716dc1995f392f40ca1196dea992f82d45f5
4
- data.tar.gz: 9c415cc56d0c23df319c57c3b20f8d4ee2d3cdfcd490379453f476b16e6dafc7
3
+ metadata.gz: 1d3f714c81551387edbdc53c3587d6d416af72c2214f17264346b948475bd8e5
4
+ data.tar.gz: 4c8ea2ef3f94b56f2861d42fe3c0f5827d68db657c8ec50abd3babe8f7d1168a
5
5
  SHA512:
6
- metadata.gz: cc35a426aeef14b77d7e034c8c801f9f03ce6e9fc48982be89475ee9c581723df017a489fe8b6c3920ded1c237868b57f27061dd4fd6f43a121f45cb9d99cd33
7
- data.tar.gz: 2d20d88426797545d7bf51bbf09902a5229df623c98c19df4729a3864df3f47758a5488551e12abff7c595444e2c6caa62d38cb63d28badefe241ff8c0843ab5
6
+ metadata.gz: 6164d420ba03f1e018555224496327cb963eeca2675e0f1ce63f4f7dcb74d656617803c0b6a04f3f4e634fdea47c48bfe066c2b745417b88812b3f6abdde1e82
7
+ data.tar.gz: 06d0f4efcf328b1de7fc0c7520566a937a5bc9e8d6dc74c8de78d6fbf1bd1eec01069f6aefa00fa442ee00a04049bc5d2191cf74646a8fd9755854e885a3d1fb
data/lib/gem_version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Ocean
4
- VERSION = "1.0.1"
4
+ VERSION = "1.0.2"
5
5
  end
6
6
 
7
7
  module Pod
@@ -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
- # http source 默认不警告
13
- if installation_options.warn_for_unsecure_source?
14
- old_verify_source_is_secure(root_spec)
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.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - lizhi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-08 00:00:00.000000000 Z
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
@@ -159,7 +160,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
159
160
  - !ruby/object:Gem::Version
160
161
  version: '0'
161
162
  requirements: []
162
- rubygems_version: 3.1.4
163
+ rubygems_version: 3.1.6
163
164
  signing_key:
164
165
  specification_version: 4
165
166
  summary: swordfish编译加速插件.