cocoapods-dongjia 1.1.9 → 1.1.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
  SHA256:
3
- metadata.gz: 14d10a546e9cbe29e2ed6ea158754229fbb0414cfd5baaf6fa3d374950f50652
4
- data.tar.gz: 1347d10a345379815079ca570bfaf3de2f73d7ef6d3f28069aacf9104a9e6780
3
+ metadata.gz: f8954ae550d9759e424b8250ace3ad0d6deb0f1ec221995637855b3dbf44ea1a
4
+ data.tar.gz: 59850829db90f3389146586b7dbc70ac6c43d5110f7272388d8bee356ad64c49
5
5
  SHA512:
6
- metadata.gz: 60a234c4403847a2c5994edb6911a1763891f08fe22f94013f96a93d34b5c88f31219fb0a949443b958cc37d88804087955db367e94e2336beede96138cd8b67
7
- data.tar.gz: bf8390bb5e4d9abc3c18b8c6315b3cb9d5d38f215a828a3f8df12d5712e2f9e652da83e77069494ebe1dbe186f7ba7fbb837317adb9b402310b6781f63c97eaa
6
+ metadata.gz: 21dce76b6b0513f2e8ad7b109b8c8576aa3722e5a8d4e2d5c12cb3d6b06a7c5f670d2d03557e8b66b5e64e7e69dcb0037fb1d157ff2eed49512229e6011be23d
7
+ data.tar.gz: 233659f47ab622e95ffaf19da47e54b76b616491a0373966803a86e12de719a63b48f07870f00e725aa57e13dddd56b54ca97ae9023a86a09c7b299056966fe6
@@ -1,20 +1,20 @@
1
1
  require 'cocoapods'
2
2
 
3
- module Pod
4
- class Command
5
- class Install < Command
6
- alias_method :run_retryable, :run
7
- def run
8
- begin
9
- run_retryable()
10
- rescue => exception
11
- # 有异常,打开 --repo-update 重试
12
- unless @repo_update
13
- @repo_update = true
14
- run_retryable()
15
- end
16
- end
17
- end
18
- end
19
- end
20
- end
3
+ # module Pod
4
+ # class Command
5
+ # class Install < Command
6
+ # alias_method :run_retryable, :run
7
+ # def run
8
+ # begin
9
+ # run_retryable()
10
+ # rescue => exception
11
+ # # 有异常,打开 --repo-update 重试
12
+ # unless @repo_update
13
+ # @repo_update = true
14
+ # run_retryable()
15
+ # end
16
+ # end
17
+ # end
18
+ # end
19
+ # end
20
+ # end
@@ -1,5 +1,5 @@
1
1
  module CocoapodsDongjia
2
- VERSION = "1.1.9"
2
+ VERSION = "1.1.11"
3
3
  UPDATE_DESC = <<-EOS
4
4
  - 修复源码和二进制切换后的集成依赖问题
5
5
  - 修复一些导致 crash 的问题
@@ -5,16 +5,16 @@ module Pod
5
5
 
6
6
  class Installer
7
7
 
8
- class PodSourceInstaller
9
- # 关闭自己仓库中 pod 的安全警告
10
- old_method = instance_method(:verify_source_is_secure)
11
- define_method(:verify_source_is_secure) do |root_spec|
12
- url = root_spec.source[:http]
13
- if url != nil && !url.start_with?('http://code.kaipao.cc')
14
- old_method.bind(self).(root_spec)
15
- end
16
- end
17
- end
8
+ # class PodSourceInstaller
9
+ # # 关闭自己仓库中 pod 的安全警告
10
+ # old_method = instance_method(:verify_source_is_secure)
11
+ # define_method(:verify_source_is_secure) do |root_spec|
12
+ # url = root_spec.source[:http]
13
+ # if url != nil && !url.start_with?('http://code.kaipao.cc')
14
+ # old_method.bind(self).(root_spec)
15
+ # end
16
+ # end
17
+ # end
18
18
 
19
19
  # Hook post_installer
20
20
  # origin_perform_post_install_actions = instance_method(:perform_post_install_actions)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-dongjia
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.9
4
+ version: 1.1.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - jiangzhuoyi