cocoapods 0.36.1 → 0.36.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
  SHA1:
3
- metadata.gz: a9aeeba66625dc74540d9657422a5c529e46f083
4
- data.tar.gz: f6035889f19066bc24792903ab16849cc694ca68
3
+ metadata.gz: e7a811de61a0cb07082df81c3b11e58efec0c870
4
+ data.tar.gz: b5e9bf412a02e0c460c7fd77ff950c30b6fc43bb
5
5
  SHA512:
6
- metadata.gz: 4c9e00a4e8d4546059a1b8a00dbc29259357e88de39f6f3980961e29cae0eef4db3909563636b6f09fc98846d4e7b529e672ed6b8abbc1df1ea736a03ac24ccc
7
- data.tar.gz: f160e5318d25d6d3639bea7a03a23d68cf43e3f064cd57133f0112779dcd3c477de4935a0db3fbde55d5f1a4158b67252b1fa2bb008dcd4cded8b3615cd299b6
6
+ metadata.gz: 7b4a2f0a05152944bf72762cadf41d49f6ea55cc7e84d4412020943b1ca0992795ef68843cf5a4237576cf5324dd24f28fbb7e46b72a27d8af3a2b8d78499c63
7
+ data.tar.gz: eb7c3e2ef80c3c9ae9b142a46d3bb0023b18fad79458124fcb5e7e81fc9534918bbaa915b25693d966f744f136902389878595debc2f19173234a1bc5500a266
@@ -4,6 +4,24 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
4
4
 
5
5
  To install release candidates run `[sudo] gem install cocoapods --pre`
6
6
 
7
+ ## 0.36.2
8
+
9
+ [Core](https://github.com/CocoaPods/Core/compare/0.36.1...0.36.2)
10
+
11
+ #### Bug Fixes
12
+
13
+ * Unique resources passed to the script generator.
14
+ [Diego Torres](https://github.com/dtorres)
15
+ [#3315](https://github.com/CocoaPods/CocoaPods/issues/3315)
16
+ [#3327](https://github.com/CocoaPods/CocoaPods/issues/3327)
17
+
18
+ * Update the `Manifest.lock` when migrating local podspecs to JSON. This fixes
19
+ running `pod install` after upgrading to `0.36`.
20
+ [Samuel Giddins](https://github.com/segiddins)
21
+ [#3292](https://github.com/CocoaPods/CocoaPods/issues/3292)
22
+ [#3299](https://github.com/CocoaPods/CocoaPods/issues/3299)
23
+
24
+
7
25
  ## 0.36.1
8
26
 
9
27
  [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.23.0...0.23.1)
@@ -60,7 +60,7 @@ module Pod
60
60
  #
61
61
  def clone_template
62
62
  UI.section("Cloning `#{template_repo_url}` into `#{@name}`.") do
63
- git! "clone '#{template_repo_url}' #{@name}"
63
+ git! ['clone', template_repo_url, @name]
64
64
  end
65
65
  end
66
66
 
@@ -39,11 +39,11 @@ module Pod
39
39
  UI.section("#{prefix} spec repo `#{@name}` from `#{@url}`#{" (branch `#{@branch}`)" if @branch}") do
40
40
  config.repos_dir.mkpath
41
41
  Dir.chdir(config.repos_dir) do
42
- command = "clone '#{@url}' #{@name}"
43
- command << ' --depth=1' if @shallow
42
+ command = ['clone', @url, @name]
43
+ command << '--depth=1' if @shallow
44
44
  git!(command)
45
45
  end
46
- Dir.chdir(dir) { git!("checkout #{@branch}") } if @branch
46
+ Dir.chdir(dir) { git!('checkout', @branch) } if @branch
47
47
  SourcesManager.check_version_information(dir)
48
48
  end
49
49
  end
@@ -146,10 +146,10 @@ module Pod
146
146
  FileUtils.cp(spec_file, output_path)
147
147
  Dir.chdir(repo_dir) do
148
148
  # only commit if modified
149
- if git!('status --porcelain 2>&1').include?(spec.name)
149
+ if git!('status', '--porcelain').include?(spec.name)
150
150
  UI.puts " - #{message}"
151
- git!("add #{spec.name}")
152
- git!("commit --no-verify -m '#{message}'")
151
+ git!('add', spec.name)
152
+ git!('commit', '--no-verify', '-m', message)
153
153
  else
154
154
  UI.puts " - [No change] #{spec}"
155
155
  end
@@ -70,7 +70,7 @@ module Pod
70
70
  #
71
71
  def set_master_repo_url
72
72
  Dir.chdir(master_repo_dir) do
73
- git("remote set-url origin '#{url}'")
73
+ git('remote', 'set-url', 'origin', url)
74
74
  end
75
75
  end
76
76
 
@@ -101,7 +101,7 @@ module Pod
101
101
  #
102
102
  def set_master_repo_branch
103
103
  Dir.chdir(master_repo_dir) do
104
- git('checkout master')
104
+ git %w(checkout master)
105
105
  end
106
106
  end
107
107
 
@@ -19,12 +19,12 @@ module Pod
19
19
  # @return [void]
20
20
  #
21
21
  def executable(name)
22
- define_method(name) do |command|
23
- Executable.execute_command(name, command, false)
22
+ define_method(name) do |*command|
23
+ Executable.execute_command(name, Array(command).flatten, false)
24
24
  end
25
25
 
26
- define_method(name.to_s + '!') do |command|
27
- Executable.execute_command(name, command, true)
26
+ define_method(name.to_s + '!') do |*command|
27
+ Executable.execute_command(name, Array(command).flatten, true)
28
28
  end
29
29
  end
30
30
 
@@ -33,7 +33,7 @@ module Pod
33
33
  # @param [String] bin
34
34
  # The binary to use.
35
35
  #
36
- # @param [String] command
36
+ # @param [Array<#to_s>] command
37
37
  # The command to send to the binary.
38
38
  #
39
39
  # @param [Bool] raise_on_failure
@@ -54,7 +54,8 @@ module Pod
54
54
  require 'open4'
55
55
  require 'shellwords'
56
56
 
57
- full_command = "#{bin.shellescape} #{command}"
57
+ command = command.map(&:to_s)
58
+ full_command = "#{bin.shellescape} #{command.map(&:shellescape).join(' ')}"
58
59
 
59
60
  if Config.instance.verbose?
60
61
  UI.message("$ #{full_command}")
@@ -64,7 +65,7 @@ module Pod
64
65
  end
65
66
 
66
67
  options = { :stdout => stdout, :stderr => stderr, :status => true }
67
- status = Open4.spawn(full_command, options)
68
+ status = Open4.spawn(bin, command, options)
68
69
  output = stdout.join("\n") + stderr.join("\n")
69
70
  unless status.success?
70
71
  if raise_on_failure
@@ -1,5 +1,5 @@
1
1
  module Pod
2
2
  # The version of the cocoapods command line tool.
3
3
  #
4
- VERSION = '0.36.1' unless defined? Pod::VERSION
4
+ VERSION = '0.36.2' unless defined? Pod::VERSION
5
5
  end
@@ -15,7 +15,7 @@ module Pod
15
15
  end
16
16
 
17
17
  def save_as(pathname)
18
- gen_bridge_metadata %(-c "#{search_paths.join(' ')}" -o '#{pathname}' '#{headers.join("' '")}')
18
+ gen_bridge_metadata('-c', search_paths.join(' '), '-o', pathname, *headers)
19
19
  end
20
20
  end
21
21
  end
@@ -53,13 +53,17 @@ module Pod
53
53
  UI.message('Migrating to CocoaPods 0.36') do
54
54
  move(sandbox.root + 'Headers/Build', sandbox.root + 'Headers/Private')
55
55
 
56
+ lockfile = sandbox.manifest.to_hash
56
57
  sandbox.specifications_root.children.each do |child|
57
58
  next unless child.basename.to_s =~ /\.podspec$/
58
59
  spec = Specification.from_file(child)
59
60
  child.delete
60
61
  child = Pathname("#{child}.json")
61
62
  File.open(child, 'w') { |f| f.write spec.to_pretty_json }
63
+ lockfile['SPEC CHECKSUMS'][spec.name] = Specification.from_file(child).checksum
62
64
  end
65
+ sandbox.manifest = Lockfile.new(lockfile)
66
+ File.open(sandbox.manifest_path, 'w') { |f| f.write sandbox.manifest.to_yaml }
63
67
  end
64
68
  end
65
69
 
@@ -124,7 +124,7 @@ module Pod
124
124
  ENV.delete('CDPATH')
125
125
  prepare_command = root_spec.prepare_command.strip_heredoc.chomp
126
126
  full_command = "\nset -e\n" + prepare_command
127
- bash!(full_command)
127
+ bash!('-c', full_command)
128
128
  end
129
129
  end
130
130
  end
@@ -102,16 +102,11 @@ module Pod
102
102
  end
103
103
  end
104
104
 
105
- # Creates a script that copies the resources to the bundle of the client
106
- # target.
107
- #
108
- # @note The bridge support file needs to be created before the prefix
109
- # header, otherwise it will not be added to the resources script.
105
+ # Uniqued Resources grouped by config
110
106
  #
111
- # @return [void]
107
+ # @return [Hash{ Symbol => Array<Pathname> }]
112
108
  #
113
- def create_copy_resources_script
114
- path = target.copy_resources_script_path
109
+ def resources_by_config
115
110
  library_targets = target.pod_targets.reject do |pod_target|
116
111
  pod_target.should_build? && pod_target.requires_frameworks?
117
112
  end
@@ -120,9 +115,22 @@ module Pod
120
115
  file_accessors = library_targets.select { |t| t.include_in_build_config?(config) }.flat_map(&:file_accessors)
121
116
  resource_paths = file_accessors.flat_map { |accessor| accessor.resources.flat_map { |res| res.relative_path_from(project.path.dirname) } }
122
117
  resource_bundles = file_accessors.flat_map { |accessor| accessor.resource_bundles.keys.map { |name| "${BUILT_PRODUCTS_DIR}/#{name.shellescape}.bundle" } }
123
- resources_by_config[config] = resource_paths + resource_bundles
118
+ resources_by_config[config] = (resource_paths + resource_bundles).uniq
124
119
  resources_by_config[config] << bridge_support_file if bridge_support_file
125
120
  end
121
+ resources_by_config
122
+ end
123
+
124
+ # Creates a script that copies the resources to the bundle of the client
125
+ # target.
126
+ #
127
+ # @note The bridge support file needs to be created before the prefix
128
+ # header, otherwise it will not be added to the resources script.
129
+ #
130
+ # @return [void]
131
+ #
132
+ def create_copy_resources_script
133
+ path = target.copy_resources_script_path
126
134
  generator = Generator::CopyResourcesScript.new(resources_by_config, target.platform)
127
135
  generator.save_as(path)
128
136
  add_file_to_support_group(path)
@@ -210,7 +210,7 @@ module Pod
210
210
  UI.section "Updating spec repo `#{source.name}`" do
211
211
  Dir.chdir(source.repo) do
212
212
  begin
213
- output = git!('pull --ff-only')
213
+ output = git! %w(pull --ff-only)
214
214
  UI.puts output if show_output && !config.verbose?
215
215
  rescue Informative
216
216
  UI.warn 'CocoaPods was not able to update the ' \
@@ -232,7 +232,7 @@ module Pod
232
232
  # @return [Bool] Whether the given source is a GIT repo.
233
233
  #
234
234
  def git_repo?(dir)
235
- Dir.chdir(dir) { git('rev-parse >/dev/null 2>&1') }
235
+ Dir.chdir(dir) { `git rev-parse >/dev/null 2>&1` }
236
236
  $?.success?
237
237
  end
238
238
 
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.36.1
4
+ version: 0.36.2
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: 2015-03-27 00:00:00.000000000 Z
12
+ date: 2015-03-31 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: cocoapods-core
@@ -17,222 +17,222 @@ dependencies:
17
17
  requirements:
18
18
  - - '='
19
19
  - !ruby/object:Gem::Version
20
- version: 0.36.1
20
+ version: 0.36.2
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.36.1
27
+ version: 0.36.2
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.8.1
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.8.1
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.23.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.23.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.8.1
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.8.1
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.4.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.4.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.3
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.3
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.6.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.6.0
112
112
  - !ruby/object:Gem::Dependency
113
113
  name: molinillo
114
114
  requirement: !ruby/object:Gem::Requirement
115
115
  requirements:
116
- - - ~>
116
+ - - "~>"
117
117
  - !ruby/object:Gem::Version
118
118
  version: 0.2.1
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: 0.2.1
126
126
  - !ruby/object:Gem::Dependency
127
127
  name: colored
128
128
  requirement: !ruby/object:Gem::Requirement
129
129
  requirements:
130
- - - ~>
130
+ - - "~>"
131
131
  - !ruby/object:Gem::Version
132
132
  version: '1.2'
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: '1.2'
140
140
  - !ruby/object:Gem::Dependency
141
141
  name: escape
142
142
  requirement: !ruby/object:Gem::Requirement
143
143
  requirements:
144
- - - ~>
144
+ - - "~>"
145
145
  - !ruby/object:Gem::Version
146
146
  version: 0.0.4
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: 0.0.4
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
  type: :runtime
176
176
  prerelease: false
177
177
  version_requirements: !ruby/object:Gem::Requirement
178
178
  requirements:
179
- - - '>='
179
+ - - ">="
180
180
  - !ruby/object:Gem::Version
181
181
  version: 3.2.15
182
182
  - !ruby/object:Gem::Dependency
183
183
  name: nap
184
184
  requirement: !ruby/object:Gem::Requirement
185
185
  requirements:
186
- - - ~>
186
+ - - "~>"
187
187
  - !ruby/object:Gem::Version
188
188
  version: '0.8'
189
189
  type: :runtime
190
190
  prerelease: false
191
191
  version_requirements: !ruby/object:Gem::Requirement
192
192
  requirements:
193
- - - ~>
193
+ - - "~>"
194
194
  - !ruby/object:Gem::Version
195
195
  version: '0.8'
196
196
  - !ruby/object:Gem::Dependency
197
197
  name: bundler
198
198
  requirement: !ruby/object:Gem::Requirement
199
199
  requirements:
200
- - - ~>
200
+ - - "~>"
201
201
  - !ruby/object:Gem::Version
202
202
  version: '1.3'
203
203
  type: :development
204
204
  prerelease: false
205
205
  version_requirements: !ruby/object:Gem::Requirement
206
206
  requirements:
207
- - - ~>
207
+ - - "~>"
208
208
  - !ruby/object:Gem::Version
209
209
  version: '1.3'
210
210
  - !ruby/object:Gem::Dependency
211
211
  name: rake
212
212
  requirement: !ruby/object:Gem::Requirement
213
213
  requirements:
214
- - - '>='
214
+ - - ">="
215
215
  - !ruby/object:Gem::Version
216
216
  version: '0'
217
217
  type: :development
218
218
  prerelease: false
219
219
  version_requirements: !ruby/object:Gem::Requirement
220
220
  requirements:
221
- - - '>='
221
+ - - ">="
222
222
  - !ruby/object:Gem::Version
223
223
  version: '0'
224
224
  - !ruby/object:Gem::Dependency
225
225
  name: bacon
226
226
  requirement: !ruby/object:Gem::Requirement
227
227
  requirements:
228
- - - ~>
228
+ - - "~>"
229
229
  - !ruby/object:Gem::Version
230
230
  version: '1.1'
231
231
  type: :development
232
232
  prerelease: false
233
233
  version_requirements: !ruby/object:Gem::Requirement
234
234
  requirements:
235
- - - ~>
235
+ - - "~>"
236
236
  - !ruby/object:Gem::Version
237
237
  version: '1.1'
238
238
  description: |-
@@ -250,40 +250,46 @@ executables:
250
250
  extensions: []
251
251
  extra_rdoc_files: []
252
252
  files:
253
+ - CHANGELOG.md
254
+ - LICENSE
255
+ - README.md
256
+ - bin/pod
257
+ - bin/sandbox-pod
258
+ - lib/cocoapods.rb
259
+ - lib/cocoapods/command.rb
253
260
  - lib/cocoapods/command/init.rb
254
261
  - lib/cocoapods/command/inter_process_communication.rb
255
262
  - lib/cocoapods/command/lib.rb
256
263
  - lib/cocoapods/command/list.rb
257
264
  - lib/cocoapods/command/outdated.rb
258
265
  - lib/cocoapods/command/project.rb
266
+ - lib/cocoapods/command/repo.rb
259
267
  - lib/cocoapods/command/repo/add.rb
260
268
  - lib/cocoapods/command/repo/lint.rb
261
269
  - lib/cocoapods/command/repo/list.rb
262
270
  - lib/cocoapods/command/repo/push.rb
263
271
  - lib/cocoapods/command/repo/remove.rb
264
272
  - lib/cocoapods/command/repo/update.rb
265
- - lib/cocoapods/command/repo.rb
266
273
  - lib/cocoapods/command/search.rb
267
274
  - lib/cocoapods/command/setup.rb
275
+ - lib/cocoapods/command/spec.rb
268
276
  - lib/cocoapods/command/spec/cat.rb
269
277
  - lib/cocoapods/command/spec/create.rb
270
278
  - lib/cocoapods/command/spec/edit.rb
271
279
  - lib/cocoapods/command/spec/lint.rb
272
280
  - lib/cocoapods/command/spec/which.rb
273
- - lib/cocoapods/command/spec.rb
274
- - lib/cocoapods/command.rb
275
281
  - lib/cocoapods/config.rb
276
282
  - lib/cocoapods/downloader.rb
277
283
  - lib/cocoapods/executable.rb
284
+ - lib/cocoapods/external_sources.rb
278
285
  - lib/cocoapods/external_sources/abstract_external_source.rb
279
286
  - lib/cocoapods/external_sources/downloader_source.rb
280
287
  - lib/cocoapods/external_sources/path_source.rb
281
288
  - lib/cocoapods/external_sources/podspec_source.rb
282
- - lib/cocoapods/external_sources.rb
283
289
  - lib/cocoapods/gem_version.rb
290
+ - lib/cocoapods/generator/acknowledgements.rb
284
291
  - lib/cocoapods/generator/acknowledgements/markdown.rb
285
292
  - lib/cocoapods/generator/acknowledgements/plist.rb
286
- - lib/cocoapods/generator/acknowledgements.rb
287
293
  - lib/cocoapods/generator/bridge_support.rb
288
294
  - lib/cocoapods/generator/copy_resources_script.rb
289
295
  - lib/cocoapods/generator/dummy_source.rb
@@ -294,50 +300,44 @@ files:
294
300
  - lib/cocoapods/generator/prefix_header.rb
295
301
  - lib/cocoapods/generator/target_environment_header.rb
296
302
  - lib/cocoapods/generator/umbrella_header.rb
303
+ - lib/cocoapods/generator/xcconfig.rb
297
304
  - lib/cocoapods/generator/xcconfig/aggregate_xcconfig.rb
298
305
  - lib/cocoapods/generator/xcconfig/private_pod_xcconfig.rb
299
306
  - lib/cocoapods/generator/xcconfig/public_pod_xcconfig.rb
300
307
  - lib/cocoapods/generator/xcconfig/xcconfig_helper.rb
301
- - lib/cocoapods/generator/xcconfig.rb
302
308
  - lib/cocoapods/hooks/installer_representation.rb
303
309
  - lib/cocoapods/hooks/library_representation.rb
304
310
  - lib/cocoapods/hooks/pod_representation.rb
305
311
  - lib/cocoapods/hooks_manager.rb
312
+ - lib/cocoapods/installer.rb
313
+ - lib/cocoapods/installer/analyzer.rb
306
314
  - lib/cocoapods/installer/analyzer/locking_dependency_analyzer.rb
307
315
  - lib/cocoapods/installer/analyzer/sandbox_analyzer.rb
308
- - lib/cocoapods/installer/analyzer.rb
309
316
  - lib/cocoapods/installer/file_references_installer.rb
310
317
  - lib/cocoapods/installer/hooks_context.rb
311
318
  - lib/cocoapods/installer/migrator.rb
312
319
  - lib/cocoapods/installer/pod_source_installer.rb
320
+ - lib/cocoapods/installer/target_installer.rb
313
321
  - lib/cocoapods/installer/target_installer/aggregate_target_installer.rb
314
322
  - lib/cocoapods/installer/target_installer/pod_target_installer.rb
315
- - lib/cocoapods/installer/target_installer.rb
316
- - lib/cocoapods/installer/user_project_integrator/target_integrator/xcconfig_integrator.rb
317
- - lib/cocoapods/installer/user_project_integrator/target_integrator.rb
318
323
  - lib/cocoapods/installer/user_project_integrator.rb
319
- - lib/cocoapods/installer.rb
324
+ - lib/cocoapods/installer/user_project_integrator/target_integrator.rb
325
+ - lib/cocoapods/installer/user_project_integrator/target_integrator/xcconfig_integrator.rb
320
326
  - lib/cocoapods/open_uri.rb
321
327
  - lib/cocoapods/project.rb
322
- - lib/cocoapods/resolver/lazy_specification.rb
323
328
  - lib/cocoapods/resolver.rb
329
+ - lib/cocoapods/resolver/lazy_specification.rb
330
+ - lib/cocoapods/sandbox.rb
324
331
  - lib/cocoapods/sandbox/file_accessor.rb
325
332
  - lib/cocoapods/sandbox/headers_store.rb
326
333
  - lib/cocoapods/sandbox/path_list.rb
327
- - lib/cocoapods/sandbox.rb
328
334
  - lib/cocoapods/sources_manager.rb
335
+ - lib/cocoapods/target.rb
329
336
  - lib/cocoapods/target/aggregate_target.rb
330
337
  - lib/cocoapods/target/pod_target.rb
331
- - lib/cocoapods/target.rb
332
- - lib/cocoapods/user_interface/error_report.rb
333
338
  - lib/cocoapods/user_interface.rb
339
+ - lib/cocoapods/user_interface/error_report.rb
334
340
  - lib/cocoapods/validator.rb
335
- - lib/cocoapods.rb
336
- - bin/pod
337
- - bin/sandbox-pod
338
- - README.md
339
- - LICENSE
340
- - CHANGELOG.md
341
341
  homepage: https://github.com/CocoaPods/CocoaPods
342
342
  licenses:
343
343
  - MIT
@@ -348,17 +348,17 @@ require_paths:
348
348
  - lib
349
349
  required_ruby_version: !ruby/object:Gem::Requirement
350
350
  requirements:
351
- - - '>='
351
+ - - ">="
352
352
  - !ruby/object:Gem::Version
353
353
  version: 2.0.0
354
354
  required_rubygems_version: !ruby/object:Gem::Requirement
355
355
  requirements:
356
- - - '>='
356
+ - - ">="
357
357
  - !ruby/object:Gem::Version
358
358
  version: '0'
359
359
  requirements: []
360
360
  rubyforge_project:
361
- rubygems_version: 2.0.14
361
+ rubygems_version: 2.4.6
362
362
  signing_key:
363
363
  specification_version: 3
364
364
  summary: The Cocoa library package manager.