cocoapods-binary-bugfix 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/ISSUE_TEMPLATE +10 -0
- data/.gitignore +33 -0
- data/.travis.yml +23 -0
- data/.vscode/launch.json +19 -0
- data/Gemfile +13 -0
- data/Gemfile.lock +130 -0
- data/LICENSE +21 -0
- data/LICENSE.txt +22 -0
- data/README.md +85 -0
- data/Rakefile +13 -0
- data/cocoapods-binary-bugfix.gemspec +28 -0
- data/lib/cocoapods-binary-bel.rb +1 -0
- data/lib/cocoapods-binary-bugfix/Integration.rb +295 -0
- data/lib/cocoapods-binary-bugfix/Main.rb +178 -0
- data/lib/cocoapods-binary-bugfix/Prebuild.rb +370 -0
- data/lib/cocoapods-binary-bugfix/command_option/command_option.rb +51 -0
- data/lib/cocoapods-binary-bugfix/gem_version.rb +3 -0
- data/lib/cocoapods-binary-bugfix/helper/feature_switches.rb +101 -0
- data/lib/cocoapods-binary-bugfix/helper/names.rb +78 -0
- data/lib/cocoapods-binary-bugfix/helper/passer.rb +41 -0
- data/lib/cocoapods-binary-bugfix/helper/podfile_options.rb +139 -0
- data/lib/cocoapods-binary-bugfix/helper/prebuild_sandbox.rb +82 -0
- data/lib/cocoapods-binary-bugfix/helper/target_checker.rb +49 -0
- data/lib/cocoapods-binary-bugfix/rome/build_framework.rb +222 -0
- data/lib/cocoapods-binary-bugfix/tool/tool.rb +12 -0
- data/lib/cocoapods_plugin.rb +2 -0
- data/spec/spec_helper.rb +50 -0
- metadata +157 -0
metadata
ADDED
@@ -0,0 +1,157 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cocoapods-binary-bugfix
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- caitoy
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-10-27 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: cocoapods
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: fourflusher
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: xcpretty
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: CFPropertyList
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: bundler
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rake
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
description: integrate pods in form of prebuilt frameworks conveniently, reducing
|
98
|
+
compile time
|
99
|
+
email:
|
100
|
+
- cchengqihan@gmail.com
|
101
|
+
executables: []
|
102
|
+
extensions: []
|
103
|
+
extra_rdoc_files: []
|
104
|
+
files:
|
105
|
+
- ".github/ISSUE_TEMPLATE"
|
106
|
+
- ".gitignore"
|
107
|
+
- ".travis.yml"
|
108
|
+
- ".vscode/launch.json"
|
109
|
+
- Gemfile
|
110
|
+
- Gemfile.lock
|
111
|
+
- LICENSE
|
112
|
+
- LICENSE.txt
|
113
|
+
- README.md
|
114
|
+
- Rakefile
|
115
|
+
- cocoapods-binary-bugfix.gemspec
|
116
|
+
- lib/cocoapods-binary-bel.rb
|
117
|
+
- lib/cocoapods-binary-bugfix/Integration.rb
|
118
|
+
- lib/cocoapods-binary-bugfix/Main.rb
|
119
|
+
- lib/cocoapods-binary-bugfix/Prebuild.rb
|
120
|
+
- lib/cocoapods-binary-bugfix/command_option/command_option.rb
|
121
|
+
- lib/cocoapods-binary-bugfix/gem_version.rb
|
122
|
+
- lib/cocoapods-binary-bugfix/helper/feature_switches.rb
|
123
|
+
- lib/cocoapods-binary-bugfix/helper/names.rb
|
124
|
+
- lib/cocoapods-binary-bugfix/helper/passer.rb
|
125
|
+
- lib/cocoapods-binary-bugfix/helper/podfile_options.rb
|
126
|
+
- lib/cocoapods-binary-bugfix/helper/prebuild_sandbox.rb
|
127
|
+
- lib/cocoapods-binary-bugfix/helper/target_checker.rb
|
128
|
+
- lib/cocoapods-binary-bugfix/rome/build_framework.rb
|
129
|
+
- lib/cocoapods-binary-bugfix/tool/tool.rb
|
130
|
+
- lib/cocoapods_plugin.rb
|
131
|
+
- spec/spec_helper.rb
|
132
|
+
homepage: https://github.com/cqhcqhcqh/cocoapods-binary-bugfix
|
133
|
+
licenses:
|
134
|
+
- MIT
|
135
|
+
metadata: {}
|
136
|
+
post_install_message:
|
137
|
+
rdoc_options: []
|
138
|
+
require_paths:
|
139
|
+
- lib
|
140
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
141
|
+
requirements:
|
142
|
+
- - ">="
|
143
|
+
- !ruby/object:Gem::Version
|
144
|
+
version: '0'
|
145
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
146
|
+
requirements:
|
147
|
+
- - ">="
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
version: '0'
|
150
|
+
requirements: []
|
151
|
+
rubygems_version: 3.3.11
|
152
|
+
signing_key:
|
153
|
+
specification_version: 4
|
154
|
+
summary: A CocoaPods plugin to integrate pods in form of prebuilt frameworks, not
|
155
|
+
source code, by adding just one flag in podfile. Speed up compiling dramatically.
|
156
|
+
test_files:
|
157
|
+
- spec/spec_helper.rb
|