cocoapods-xccache 0.0.1
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 +7 -0
- data/lib/cocoapods-xccache/command/xccache.rb +60 -0
- data/lib/cocoapods-xccache/command/xcextract.rb +51 -0
- data/lib/cocoapods-xccache/command/xcprepare.rb +69 -0
- data/lib/cocoapods-xccache/command/xcprintenv.rb +60 -0
- data/lib/cocoapods-xccache/command.rb +4 -0
- data/lib/cocoapods-xccache/core/zabel.rb +1047 -0
- data/lib/cocoapods-xccache/gem_version.rb +4 -0
- data/lib/cocoapods-xccache.rb +1 -0
- data/lib/cocoapods_plugin.rb +19 -0
- metadata +94 -0
@@ -0,0 +1 @@
|
|
1
|
+
require 'cocoapods-xccache/gem_version'
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'cocoapods-xccache/command'
|
2
|
+
require 'cocoapods'
|
3
|
+
require_relative 'cocoapods-xccache/core/zabel'
|
4
|
+
|
5
|
+
module CocoapodsXccache
|
6
|
+
# 注册post_install钩子
|
7
|
+
Pod::HooksManager.register('cocoapods-xccache', :post_install) do |context|
|
8
|
+
puts ""
|
9
|
+
puts ">>>>>>>>>: post_install, 开始执行 pre 函数"
|
10
|
+
Zabel.zabel_pre({})
|
11
|
+
end
|
12
|
+
|
13
|
+
# 注册post update钩子
|
14
|
+
Pod::HooksManager.register('cocoapods-xccache', :post_update) do |context|
|
15
|
+
puts ""
|
16
|
+
puts ">>>>>>>>>>: post_update, 开始执行 pre 函数"
|
17
|
+
Zabel.zabel_pre({})
|
18
|
+
end
|
19
|
+
end
|
metadata
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cocoapods-xccache
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- faimin
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-04-16 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: xcodeproj
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.19'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.19'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.3'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.3'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10'
|
55
|
+
description: A short description of cocoapods-xccache.
|
56
|
+
email:
|
57
|
+
- fuxianchao@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- lib/cocoapods-xccache.rb
|
63
|
+
- lib/cocoapods-xccache/command.rb
|
64
|
+
- lib/cocoapods-xccache/command/xccache.rb
|
65
|
+
- lib/cocoapods-xccache/command/xcextract.rb
|
66
|
+
- lib/cocoapods-xccache/command/xcprepare.rb
|
67
|
+
- lib/cocoapods-xccache/command/xcprintenv.rb
|
68
|
+
- lib/cocoapods-xccache/core/zabel.rb
|
69
|
+
- lib/cocoapods-xccache/gem_version.rb
|
70
|
+
- lib/cocoapods_plugin.rb
|
71
|
+
homepage: https://github.com/EXAMPLE/cocoapods-xccache
|
72
|
+
licenses:
|
73
|
+
- MIT
|
74
|
+
metadata: {}
|
75
|
+
post_install_message:
|
76
|
+
rdoc_options: []
|
77
|
+
require_paths:
|
78
|
+
- lib
|
79
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0'
|
84
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
requirements: []
|
90
|
+
rubygems_version: 3.1.6
|
91
|
+
signing_key:
|
92
|
+
specification_version: 4
|
93
|
+
summary: A longer description of cocoapods-xccache.
|
94
|
+
test_files: []
|