cocoapods 0.34.0.rc1 → 0.34.0.rc2
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 +4 -4
- data/CHANGELOG.md +28 -8
- data/lib/cocoapods/command/init.rb +2 -0
- data/lib/cocoapods/command/lib.rb +4 -1
- data/lib/cocoapods/gem_version.rb +1 -1
- data/lib/cocoapods/sources_manager.rb +5 -2
- data/lib/cocoapods/user_interface.rb +11 -10
- metadata +58 -58
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 114f09917e2a16defbb7b61d654759d6815ca920
|
4
|
+
data.tar.gz: 87793bf336aabe63903e45d1ecb2e3fc680ce68d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ea6d616848f34f4c377fa69c71c16c0e3bf241ba82e3e044f5342c14bf891af6b3e80624a6d6e6b10af6ef80b6ef7400d25552b5c8412ba46bf9e59de94af64
|
7
|
+
data.tar.gz: f2239e5f72d377dccb46de1a17c35100128f6556290d33fdd19b29558d5caad74582e973a69afeca3781ab12f4436a00581cbb08e6009f743c5fde89672be1be
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,22 @@
|
|
2
2
|
|
3
3
|
To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides/installing_cocoapods.html).
|
4
4
|
|
5
|
+
|
6
|
+
## 0.34.0.rc2
|
7
|
+
|
8
|
+
##### Bug Fixes
|
9
|
+
|
10
|
+
* Fixes an issue where `pod lib lint` would crash if a podspec couldn't be
|
11
|
+
loaded.
|
12
|
+
[Kyle Fuller](https://github.com/kylef)
|
13
|
+
[#2147](https://github.com/CocoaPods/CocoaPods/issues/2147)
|
14
|
+
|
15
|
+
* Fixes an issue where `pod init` would not add `source 'master'` to newly
|
16
|
+
created Podfiles.
|
17
|
+
[Ash Furrow](https://github.com/AshFurrow)
|
18
|
+
[#2473](https://github.com/CocoaPods/CocoaPods/issues/2473)
|
19
|
+
|
20
|
+
|
5
21
|
## 0.34.0.rc1
|
6
22
|
|
7
23
|
##### Breaking
|
@@ -10,6 +26,18 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
|
|
10
26
|
should not be used. It will be removed in future versions of CocoaPods.
|
11
27
|
[#2449](https://github.com/CocoaPods/CocoaPods/issues/2449)
|
12
28
|
|
29
|
+
* Add support for loading podspecs from specific spec-repos _only_, a.k.a. ‘sources’.
|
30
|
+
By default, when not specifying any specific sources in your Podfile, the ‘master’
|
31
|
+
spec-repo will be used, as was always the case. However, once you specify specific
|
32
|
+
sources the ‘master’ spec-repo will **not** be included by default. For example:
|
33
|
+
|
34
|
+
source 'private-spec-repo'
|
35
|
+
source 'master'
|
36
|
+
|
37
|
+
[François Benaiteau](https://github.com/netbe)
|
38
|
+
[#1143](https://github.com/CocoaPods/CocoaPods/pull/1143)
|
39
|
+
[Core#19](https://github.com/CocoaPods/Core/pull/19)
|
40
|
+
|
13
41
|
* The `Pods` directory has been reorganized. This might require manual
|
14
42
|
intervention in projects where files generated by CocoaPods have manually been
|
15
43
|
imported into the user's project (common with the acknowledgements files).
|
@@ -32,14 +60,6 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
|
|
32
60
|
[#1668](https://github.com/CocoaPods/CocoaPods/pull/1668)
|
33
61
|
[#731](https://github.com/CocoaPods/CocoaPods/pull/731)
|
34
62
|
|
35
|
-
* Add 'specific repo sources' support. Allows one to specify in their Podfile
|
36
|
-
which sources should be used to retrieve specs from and the priority order
|
37
|
-
thereof. For example: `source 'netbe'`, or `source 'master'`, with 'master'
|
38
|
-
being the default GitHub CocoaPods spec-repo.
|
39
|
-
[François Benaiteau](https://github.com/netbe)
|
40
|
-
[#1143](https://github.com/CocoaPods/CocoaPods/pull/1143)
|
41
|
-
[Core#19](https://github.com/CocoaPods/Core/pull/19)
|
42
|
-
|
43
63
|
* Add hooks for plugins. Currently only the installer hook is supported.
|
44
64
|
A plugin can register itself to be activated after the installation with the
|
45
65
|
following syntax:
|
@@ -150,7 +150,10 @@ module Pod
|
|
150
150
|
if validator.validated?
|
151
151
|
UI.puts "#{validator.spec.name} passed validation.".green
|
152
152
|
else
|
153
|
-
|
153
|
+
spec_name = podspec
|
154
|
+
spec_name = validator.spec.name if validator.spec
|
155
|
+
message = "#{spec_name} did not pass validation."
|
156
|
+
|
154
157
|
if @clean
|
155
158
|
message << "\nYou can use the `--no-clean` option to inspect " \
|
156
159
|
'any issue.'
|
@@ -210,9 +210,12 @@ module Pod
|
|
210
210
|
needs_sudo = path_writable?(__FILE__)
|
211
211
|
|
212
212
|
if config.new_version_message? && cocoapods_update?(versions)
|
213
|
+
last = versions['last']
|
214
|
+
install_message = needs_sudo ? 'sudo ' : ''
|
215
|
+
install_message << 'gem install cocoapods'
|
216
|
+
install_message << ' --pre' if Gem::Version.new(last).prerelease?
|
213
217
|
UI.puts "\nCocoaPods #{versions['last']} is available.\n" \
|
214
|
-
"To update use:
|
215
|
-
'gem install cocoapods\n'.green
|
218
|
+
"To update use: `#{install_message}`\n".green
|
216
219
|
end
|
217
220
|
end
|
218
221
|
|
@@ -119,7 +119,7 @@ module Pod
|
|
119
119
|
#
|
120
120
|
def info(message)
|
121
121
|
indentation = config.verbose? ? self.indentation_level : 0
|
122
|
-
indented = wrap_string(message,
|
122
|
+
indented = wrap_string(message, indentation)
|
123
123
|
puts(indented)
|
124
124
|
|
125
125
|
self.indentation_level += 2
|
@@ -209,7 +209,7 @@ module Pod
|
|
209
209
|
# wrapping it to the terminal width if necessary.
|
210
210
|
#
|
211
211
|
def puts_indented(message = '')
|
212
|
-
indented = wrap_string(message,
|
212
|
+
indented = wrap_string(message, self.indentation_level)
|
213
213
|
puts(indented)
|
214
214
|
end
|
215
215
|
|
@@ -224,8 +224,9 @@ module Pod
|
|
224
224
|
next if warning[:verbose_only] && !config.verbose?
|
225
225
|
STDERR.puts("\n[!] #{warning[:message]}".yellow)
|
226
226
|
warning[:actions].each do |action|
|
227
|
-
|
228
|
-
|
227
|
+
string = "- #{action}"
|
228
|
+
string = wrap_string(string, 4)
|
229
|
+
puts(string)
|
229
230
|
end
|
230
231
|
end
|
231
232
|
end
|
@@ -283,13 +284,13 @@ module Pod
|
|
283
284
|
# @note If CocoaPods is not being run in a terminal or the width of the
|
284
285
|
# terminal is too small a width of 80 is assumed.
|
285
286
|
#
|
286
|
-
def wrap_string(
|
287
|
-
if disable_wrap
|
288
|
-
|
287
|
+
def wrap_string(string, indent = 0)
|
288
|
+
if disable_wrap
|
289
|
+
string
|
289
290
|
else
|
290
|
-
|
291
|
-
|
292
|
-
|
291
|
+
first_space = ' ' * indent
|
292
|
+
indented = CLAide::Helper.wrap_with_indent(string, indent, 9999)
|
293
|
+
first_space + indented
|
293
294
|
end
|
294
295
|
end
|
295
296
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.34.0.
|
4
|
+
version: 0.34.0.rc2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eloy Duran
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-09-
|
12
|
+
date: 2014-09-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: cocoapods-core
|
@@ -17,228 +17,228 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - '='
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 0.34.0.
|
20
|
+
version: 0.34.0.rc2
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - '='
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 0.34.0.
|
27
|
+
version: 0.34.0.rc2
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: claide
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
31
31
|
requirements:
|
32
|
-
- - ~>
|
32
|
+
- - "~>"
|
33
33
|
- !ruby/object:Gem::Version
|
34
34
|
version: 0.7.0
|
35
35
|
type: :runtime
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
|
-
- - ~>
|
39
|
+
- - "~>"
|
40
40
|
- !ruby/object:Gem::Version
|
41
41
|
version: 0.7.0
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
43
|
name: xcodeproj
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
|
-
- - ~>
|
46
|
+
- - "~>"
|
47
47
|
- !ruby/object:Gem::Version
|
48
48
|
version: 0.19.1
|
49
49
|
type: :runtime
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
|
-
- - ~>
|
53
|
+
- - "~>"
|
54
54
|
- !ruby/object:Gem::Version
|
55
55
|
version: 0.19.1
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
57
|
name: cocoapods-downloader
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
59
59
|
requirements:
|
60
|
-
- - ~>
|
60
|
+
- - "~>"
|
61
61
|
- !ruby/object:Gem::Version
|
62
62
|
version: 0.7.0
|
63
63
|
type: :runtime
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
|
-
- - ~>
|
67
|
+
- - "~>"
|
68
68
|
- !ruby/object:Gem::Version
|
69
69
|
version: 0.7.0
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
71
|
name: cocoapods-plugins
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
|
-
- - ~>
|
74
|
+
- - "~>"
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: 0.3.1
|
77
77
|
type: :runtime
|
78
78
|
prerelease: false
|
79
79
|
version_requirements: !ruby/object:Gem::Requirement
|
80
80
|
requirements:
|
81
|
-
- - ~>
|
81
|
+
- - "~>"
|
82
82
|
- !ruby/object:Gem::Version
|
83
83
|
version: 0.3.1
|
84
84
|
- !ruby/object:Gem::Dependency
|
85
85
|
name: cocoapods-try
|
86
86
|
requirement: !ruby/object:Gem::Requirement
|
87
87
|
requirements:
|
88
|
-
- - ~>
|
88
|
+
- - "~>"
|
89
89
|
- !ruby/object:Gem::Version
|
90
90
|
version: 0.4.0
|
91
91
|
type: :runtime
|
92
92
|
prerelease: false
|
93
93
|
version_requirements: !ruby/object:Gem::Requirement
|
94
94
|
requirements:
|
95
|
-
- - ~>
|
95
|
+
- - "~>"
|
96
96
|
- !ruby/object:Gem::Version
|
97
97
|
version: 0.4.0
|
98
98
|
- !ruby/object:Gem::Dependency
|
99
99
|
name: cocoapods-trunk
|
100
100
|
requirement: !ruby/object:Gem::Requirement
|
101
101
|
requirements:
|
102
|
-
- - ~>
|
102
|
+
- - "~>"
|
103
103
|
- !ruby/object:Gem::Version
|
104
104
|
version: 0.2.0
|
105
105
|
type: :runtime
|
106
106
|
prerelease: false
|
107
107
|
version_requirements: !ruby/object:Gem::Requirement
|
108
108
|
requirements:
|
109
|
-
- - ~>
|
109
|
+
- - "~>"
|
110
110
|
- !ruby/object:Gem::Version
|
111
111
|
version: 0.2.0
|
112
112
|
- !ruby/object:Gem::Dependency
|
113
113
|
name: colored
|
114
114
|
requirement: !ruby/object:Gem::Requirement
|
115
115
|
requirements:
|
116
|
-
- - ~>
|
116
|
+
- - "~>"
|
117
117
|
- !ruby/object:Gem::Version
|
118
118
|
version: '1.2'
|
119
119
|
type: :runtime
|
120
120
|
prerelease: false
|
121
121
|
version_requirements: !ruby/object:Gem::Requirement
|
122
122
|
requirements:
|
123
|
-
- - ~>
|
123
|
+
- - "~>"
|
124
124
|
- !ruby/object:Gem::Version
|
125
125
|
version: '1.2'
|
126
126
|
- !ruby/object:Gem::Dependency
|
127
127
|
name: escape
|
128
128
|
requirement: !ruby/object:Gem::Requirement
|
129
129
|
requirements:
|
130
|
-
- - ~>
|
130
|
+
- - "~>"
|
131
131
|
- !ruby/object:Gem::Version
|
132
132
|
version: 0.0.4
|
133
133
|
type: :runtime
|
134
134
|
prerelease: false
|
135
135
|
version_requirements: !ruby/object:Gem::Requirement
|
136
136
|
requirements:
|
137
|
-
- - ~>
|
137
|
+
- - "~>"
|
138
138
|
- !ruby/object:Gem::Version
|
139
139
|
version: 0.0.4
|
140
140
|
- !ruby/object:Gem::Dependency
|
141
141
|
name: json_pure
|
142
142
|
requirement: !ruby/object:Gem::Requirement
|
143
143
|
requirements:
|
144
|
-
- - ~>
|
144
|
+
- - "~>"
|
145
145
|
- !ruby/object:Gem::Version
|
146
146
|
version: '1.8'
|
147
147
|
type: :runtime
|
148
148
|
prerelease: false
|
149
149
|
version_requirements: !ruby/object:Gem::Requirement
|
150
150
|
requirements:
|
151
|
-
- - ~>
|
151
|
+
- - "~>"
|
152
152
|
- !ruby/object:Gem::Version
|
153
153
|
version: '1.8'
|
154
154
|
- !ruby/object:Gem::Dependency
|
155
155
|
name: open4
|
156
156
|
requirement: !ruby/object:Gem::Requirement
|
157
157
|
requirements:
|
158
|
-
- - ~>
|
158
|
+
- - "~>"
|
159
159
|
- !ruby/object:Gem::Version
|
160
160
|
version: '1.3'
|
161
161
|
type: :runtime
|
162
162
|
prerelease: false
|
163
163
|
version_requirements: !ruby/object:Gem::Requirement
|
164
164
|
requirements:
|
165
|
-
- - ~>
|
165
|
+
- - "~>"
|
166
166
|
- !ruby/object:Gem::Version
|
167
167
|
version: '1.3'
|
168
168
|
- !ruby/object:Gem::Dependency
|
169
169
|
name: activesupport
|
170
170
|
requirement: !ruby/object:Gem::Requirement
|
171
171
|
requirements:
|
172
|
-
- -
|
172
|
+
- - ">="
|
173
173
|
- !ruby/object:Gem::Version
|
174
174
|
version: 3.2.15
|
175
|
-
- - <
|
175
|
+
- - "<"
|
176
176
|
- !ruby/object:Gem::Version
|
177
177
|
version: '4'
|
178
178
|
type: :runtime
|
179
179
|
prerelease: false
|
180
180
|
version_requirements: !ruby/object:Gem::Requirement
|
181
181
|
requirements:
|
182
|
-
- -
|
182
|
+
- - ">="
|
183
183
|
- !ruby/object:Gem::Version
|
184
184
|
version: 3.2.15
|
185
|
-
- - <
|
185
|
+
- - "<"
|
186
186
|
- !ruby/object:Gem::Version
|
187
187
|
version: '4'
|
188
188
|
- !ruby/object:Gem::Dependency
|
189
189
|
name: nap
|
190
190
|
requirement: !ruby/object:Gem::Requirement
|
191
191
|
requirements:
|
192
|
-
- - ~>
|
192
|
+
- - "~>"
|
193
193
|
- !ruby/object:Gem::Version
|
194
194
|
version: '0.8'
|
195
195
|
type: :runtime
|
196
196
|
prerelease: false
|
197
197
|
version_requirements: !ruby/object:Gem::Requirement
|
198
198
|
requirements:
|
199
|
-
- - ~>
|
199
|
+
- - "~>"
|
200
200
|
- !ruby/object:Gem::Version
|
201
201
|
version: '0.8'
|
202
202
|
- !ruby/object:Gem::Dependency
|
203
203
|
name: bundler
|
204
204
|
requirement: !ruby/object:Gem::Requirement
|
205
205
|
requirements:
|
206
|
-
- - ~>
|
206
|
+
- - "~>"
|
207
207
|
- !ruby/object:Gem::Version
|
208
208
|
version: '1.3'
|
209
209
|
type: :development
|
210
210
|
prerelease: false
|
211
211
|
version_requirements: !ruby/object:Gem::Requirement
|
212
212
|
requirements:
|
213
|
-
- - ~>
|
213
|
+
- - "~>"
|
214
214
|
- !ruby/object:Gem::Version
|
215
215
|
version: '1.3'
|
216
216
|
- !ruby/object:Gem::Dependency
|
217
217
|
name: rake
|
218
218
|
requirement: !ruby/object:Gem::Requirement
|
219
219
|
requirements:
|
220
|
-
- -
|
220
|
+
- - ">="
|
221
221
|
- !ruby/object:Gem::Version
|
222
222
|
version: '0'
|
223
223
|
type: :development
|
224
224
|
prerelease: false
|
225
225
|
version_requirements: !ruby/object:Gem::Requirement
|
226
226
|
requirements:
|
227
|
-
- -
|
227
|
+
- - ">="
|
228
228
|
- !ruby/object:Gem::Version
|
229
229
|
version: '0'
|
230
230
|
- !ruby/object:Gem::Dependency
|
231
231
|
name: bacon
|
232
232
|
requirement: !ruby/object:Gem::Requirement
|
233
233
|
requirements:
|
234
|
-
- - ~>
|
234
|
+
- - "~>"
|
235
235
|
- !ruby/object:Gem::Version
|
236
236
|
version: '1.1'
|
237
237
|
type: :development
|
238
238
|
prerelease: false
|
239
239
|
version_requirements: !ruby/object:Gem::Requirement
|
240
240
|
requirements:
|
241
|
-
- - ~>
|
241
|
+
- - "~>"
|
242
242
|
- !ruby/object:Gem::Version
|
243
243
|
version: '1.1'
|
244
244
|
description: |-
|
@@ -256,6 +256,13 @@ executables:
|
|
256
256
|
extensions: []
|
257
257
|
extra_rdoc_files: []
|
258
258
|
files:
|
259
|
+
- CHANGELOG.md
|
260
|
+
- LICENSE
|
261
|
+
- README.md
|
262
|
+
- bin/pod
|
263
|
+
- bin/sandbox-pod
|
264
|
+
- lib/cocoapods.rb
|
265
|
+
- lib/cocoapods/command.rb
|
259
266
|
- lib/cocoapods/command/init.rb
|
260
267
|
- lib/cocoapods/command/inter_process_communication.rb
|
261
268
|
- lib/cocoapods/command/lib.rb
|
@@ -263,71 +270,64 @@ files:
|
|
263
270
|
- lib/cocoapods/command/outdated.rb
|
264
271
|
- lib/cocoapods/command/project.rb
|
265
272
|
- lib/cocoapods/command/push.rb
|
266
|
-
- lib/cocoapods/command/repo/push.rb
|
267
273
|
- lib/cocoapods/command/repo.rb
|
274
|
+
- lib/cocoapods/command/repo/push.rb
|
268
275
|
- lib/cocoapods/command/search.rb
|
269
276
|
- lib/cocoapods/command/setup.rb
|
270
277
|
- lib/cocoapods/command/spec.rb
|
271
|
-
- lib/cocoapods/command.rb
|
272
278
|
- lib/cocoapods/config.rb
|
273
279
|
- lib/cocoapods/downloader.rb
|
274
280
|
- lib/cocoapods/executable.rb
|
281
|
+
- lib/cocoapods/external_sources.rb
|
275
282
|
- lib/cocoapods/external_sources/abstract_external_source.rb
|
276
283
|
- lib/cocoapods/external_sources/downloader_source.rb
|
277
284
|
- lib/cocoapods/external_sources/path_source.rb
|
278
285
|
- lib/cocoapods/external_sources/podspec_source.rb
|
279
|
-
- lib/cocoapods/external_sources.rb
|
280
286
|
- lib/cocoapods/gem_version.rb
|
287
|
+
- lib/cocoapods/generator/acknowledgements.rb
|
281
288
|
- lib/cocoapods/generator/acknowledgements/markdown.rb
|
282
289
|
- lib/cocoapods/generator/acknowledgements/plist.rb
|
283
|
-
- lib/cocoapods/generator/acknowledgements.rb
|
284
290
|
- lib/cocoapods/generator/bridge_support.rb
|
285
291
|
- lib/cocoapods/generator/copy_resources_script.rb
|
286
292
|
- lib/cocoapods/generator/dummy_source.rb
|
287
293
|
- lib/cocoapods/generator/prefix_header.rb
|
288
294
|
- lib/cocoapods/generator/target_environment_header.rb
|
295
|
+
- lib/cocoapods/generator/xcconfig.rb
|
289
296
|
- lib/cocoapods/generator/xcconfig/aggregate_xcconfig.rb
|
290
297
|
- lib/cocoapods/generator/xcconfig/private_pod_xcconfig.rb
|
291
298
|
- lib/cocoapods/generator/xcconfig/public_pod_xcconfig.rb
|
292
299
|
- lib/cocoapods/generator/xcconfig/xcconfig_helper.rb
|
293
|
-
- lib/cocoapods/generator/xcconfig.rb
|
294
300
|
- lib/cocoapods/hooks/installer_representation.rb
|
295
301
|
- lib/cocoapods/hooks/library_representation.rb
|
296
302
|
- lib/cocoapods/hooks/pod_representation.rb
|
297
303
|
- lib/cocoapods/hooks_manager.rb
|
298
|
-
- lib/cocoapods/installer
|
304
|
+
- lib/cocoapods/installer.rb
|
299
305
|
- lib/cocoapods/installer/analyzer.rb
|
306
|
+
- lib/cocoapods/installer/analyzer/sandbox_analyzer.rb
|
300
307
|
- lib/cocoapods/installer/file_references_installer.rb
|
301
308
|
- lib/cocoapods/installer/hooks_context.rb
|
302
309
|
- lib/cocoapods/installer/migrator.rb
|
303
310
|
- lib/cocoapods/installer/pod_source_installer.rb
|
311
|
+
- lib/cocoapods/installer/target_installer.rb
|
304
312
|
- lib/cocoapods/installer/target_installer/aggregate_target_installer.rb
|
305
313
|
- lib/cocoapods/installer/target_installer/pod_target_installer.rb
|
306
|
-
- lib/cocoapods/installer/target_installer.rb
|
307
|
-
- lib/cocoapods/installer/user_project_integrator/target_integrator/xcconfig_integrator.rb
|
308
|
-
- lib/cocoapods/installer/user_project_integrator/target_integrator.rb
|
309
314
|
- lib/cocoapods/installer/user_project_integrator.rb
|
310
|
-
- lib/cocoapods/installer.rb
|
315
|
+
- lib/cocoapods/installer/user_project_integrator/target_integrator.rb
|
316
|
+
- lib/cocoapods/installer/user_project_integrator/target_integrator/xcconfig_integrator.rb
|
311
317
|
- lib/cocoapods/open_uri.rb
|
312
318
|
- lib/cocoapods/project.rb
|
313
319
|
- lib/cocoapods/resolver.rb
|
320
|
+
- lib/cocoapods/sandbox.rb
|
314
321
|
- lib/cocoapods/sandbox/file_accessor.rb
|
315
322
|
- lib/cocoapods/sandbox/headers_store.rb
|
316
323
|
- lib/cocoapods/sandbox/path_list.rb
|
317
|
-
- lib/cocoapods/sandbox.rb
|
318
324
|
- lib/cocoapods/sources_manager.rb
|
325
|
+
- lib/cocoapods/target.rb
|
319
326
|
- lib/cocoapods/target/aggregate_target.rb
|
320
327
|
- lib/cocoapods/target/pod_target.rb
|
321
|
-
- lib/cocoapods/target.rb
|
322
|
-
- lib/cocoapods/user_interface/error_report.rb
|
323
328
|
- lib/cocoapods/user_interface.rb
|
329
|
+
- lib/cocoapods/user_interface/error_report.rb
|
324
330
|
- lib/cocoapods/validator.rb
|
325
|
-
- lib/cocoapods.rb
|
326
|
-
- bin/pod
|
327
|
-
- bin/sandbox-pod
|
328
|
-
- README.md
|
329
|
-
- LICENSE
|
330
|
-
- CHANGELOG.md
|
331
331
|
homepage: https://github.com/CocoaPods/CocoaPods
|
332
332
|
licenses:
|
333
333
|
- MIT
|
@@ -338,17 +338,17 @@ require_paths:
|
|
338
338
|
- lib
|
339
339
|
required_ruby_version: !ruby/object:Gem::Requirement
|
340
340
|
requirements:
|
341
|
-
- -
|
341
|
+
- - ">="
|
342
342
|
- !ruby/object:Gem::Version
|
343
343
|
version: 1.8.7
|
344
344
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
345
345
|
requirements:
|
346
|
-
- -
|
346
|
+
- - ">="
|
347
347
|
- !ruby/object:Gem::Version
|
348
348
|
version: '0'
|
349
349
|
requirements: []
|
350
350
|
rubyforge_project:
|
351
|
-
rubygems_version: 2.
|
351
|
+
rubygems_version: 2.2.2
|
352
352
|
signing_key:
|
353
353
|
specification_version: 3
|
354
354
|
summary: An Objective-C library package manager.
|