cocoapods 0.30.0 → 0.31.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +93 -2
- data/lib/cocoapods.rb +4 -1
- data/lib/cocoapods/command/list.rb +1 -1
- data/lib/cocoapods/command/spec.rb +9 -4
- data/lib/cocoapods/gem_version.rb +1 -1
- data/lib/cocoapods/generator/xcconfig/aggregate_xcconfig.rb +2 -2
- data/lib/cocoapods/generator/xcconfig/xcconfig_helper.rb +5 -2
- data/lib/cocoapods/installer/pod_source_installer.rb +23 -2
- data/lib/cocoapods/sources_manager.rb +2 -2
- data/lib/cocoapods/user_interface.rb +2 -2
- data/lib/cocoapods/validator.rb +27 -5
- metadata +47 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5adc0fddc9235b91a61602f3e1ad5b39ff0b8202
|
4
|
+
data.tar.gz: 7e666313e02da60d46d86715f16d1e1cdf1b81f5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f765f328e1b5dc9585a53ad277aad83aad2f117b92c54f65717f838e7d8e30c0546750a5cb87f19836b1a0c0180a229fd81bae91a13aad319f1c9fcd71d9a7e
|
7
|
+
data.tar.gz: 284a28b535bb792fa35cc43ab1592d6495d8f2d1da2a83f3d78cb882c2b9e4a3ddd38e58f2d3ddc73e01b27afed95110b7c166810a0159a7d3d8c4716f9ba3b3
|
data/CHANGELOG.md
CHANGED
@@ -2,8 +2,99 @@
|
|
2
2
|
|
3
3
|
To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides/installing_cocoapods.html).
|
4
4
|
|
5
|
+
## 0.31.0
|
6
|
+
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.30.0...0.31.0)
|
7
|
+
• [CocoaPods-Core](https://github.com/CocoaPods/Core/compare/0.30.0...0.31.0)
|
8
|
+
|
9
|
+
##### Enhancements
|
10
|
+
|
11
|
+
* Warnings are not promoted to errors anymore to maximise compatibility with
|
12
|
+
existing libraries.
|
13
|
+
[Fabio Pelosin](https://github.com/irrationalfab)
|
14
|
+
[#1629](https://github.com/CocoaPods/CocoaPods/issues/1629)
|
15
|
+
|
16
|
+
* Include the versions of the Pods to the output of `pod list`.
|
17
|
+
[Stefan Damm](https://github.com/StefanDamm)
|
18
|
+
[Robert Zuber](https://github.com/z00b)
|
19
|
+
[#1617](https://github.com/CocoaPods/CocoaPods/issues/1617)
|
20
|
+
|
21
|
+
* The linter will now check the reachability of the homepage of Podspecs during
|
22
|
+
a full lint.
|
23
|
+
[Richard Lee](https://github.com/dlackty)
|
24
|
+
[Fabio Pelosin](https://github.com/irrationalfab)
|
25
|
+
[#1704](https://github.com/CocoaPods/CocoaPods/issues/1704)
|
26
|
+
[Core#70](https://github.com/CocoaPods/Core/pull/70)
|
27
|
+
|
28
|
+
* Improved detection of the last version of a specification in `pod spec`
|
29
|
+
subcommands.
|
30
|
+
[Laurent Sansonetti](https://github.com/lrz)
|
31
|
+
[#1953](https://github.com/CocoaPods/CocoaPods/pull/1953)
|
32
|
+
|
33
|
+
* Display advised settings for Travis CI in the warning related presented when
|
34
|
+
the terminal encoding is not set to UTF-8.
|
35
|
+
[Richard Lee](https://github.com/dlackty)
|
36
|
+
[#1933](https://github.com/CocoaPods/CocoaPods/issues/1933)
|
37
|
+
[#1941](https://github.com/CocoaPods/CocoaPods/pull/1941)
|
38
|
+
|
39
|
+
* Unset the `CDPATH` env variable before shelling-out to `prepare_command`.
|
40
|
+
[Marc Boquet](https://github.com/apalancat)
|
41
|
+
[#1943](https://github.com/CocoaPods/CocoaPods/pull/1943)
|
42
|
+
|
43
|
+
##### Bug Fixes
|
44
|
+
|
45
|
+
* Resolve crash related to the I18n deprecation warning.
|
46
|
+
[Eloy Durán](https://github.com/alloy)
|
47
|
+
[#1950](https://github.com/CocoaPods/CocoaPods/issues/1950)
|
48
|
+
|
49
|
+
* Fix compilation issues related to the native Extension of Xcodeproj.
|
50
|
+
[Eloy Durán](https://github.com/alloy)
|
51
|
+
|
52
|
+
* Robustness against user Git configuration and against merge commits in `pod
|
53
|
+
repo` subcommands.
|
54
|
+
[Boris Bügling](https://github.com/neonichu)
|
55
|
+
[#1949](https://github.com/CocoaPods/CocoaPods/issues/1949)
|
56
|
+
[#1978](https://github.com/CocoaPods/CocoaPods/pull/1978)
|
57
|
+
|
58
|
+
* Gracefully inform the user if the `:head` option is not supported for a given
|
59
|
+
download strategy.
|
60
|
+
[Boris Bügling](https://github.com/neonichu)
|
61
|
+
[#1947](https://github.com/CocoaPods/CocoaPods/issues/1947)
|
62
|
+
[#1958](https://github.com/CocoaPods/CocoaPods/pull/1958)
|
63
|
+
|
64
|
+
* Cleanup a pod directory if error occurs while downloading.
|
65
|
+
[Alex Rothenberg](https://github.com/alexrothenberg)
|
66
|
+
[#1842](https://github.com/CocoaPods/CocoaPods/issues/1842)
|
67
|
+
[#1960](https://github.com/CocoaPods/CocoaPods/pull/1960)
|
68
|
+
|
69
|
+
* No longer warn for Github repositories with OAuth authentication.
|
70
|
+
[Boris Bügling](https://github.com/neonichu)
|
71
|
+
[#1928](https://github.com/CocoaPods/CocoaPods/issues/1928)
|
72
|
+
[Core#77](https://github.com/CocoaPods/Core/pull/77)
|
73
|
+
|
74
|
+
* Fix for when using `s.version` as the `:tag` for a git repository in a
|
75
|
+
Podspec.
|
76
|
+
[Joel Parsons](https://github.com/joelparsons)
|
77
|
+
[#1721](https://github.com/CocoaPods/CocoaPods/issues/1721)
|
78
|
+
[Core#72](https://github.com/CocoaPods/Core/pull/72)
|
79
|
+
|
80
|
+
* Improved escaping of paths in Git downloader.
|
81
|
+
[Vladimir Burdukov](https://github.com/chipp)
|
82
|
+
[cocoapods-downloader#14](https://github.com/CocoaPods/cocoapods-downloader/pull/14)
|
83
|
+
|
84
|
+
* Podspec without explicitly set `requires_arc` attribute no longer passes the
|
85
|
+
lint.
|
86
|
+
[Richard Lee](https://github.com/dlackty)
|
87
|
+
[#1840](https://github.com/CocoaPods/CocoaPods/issues/1840)
|
88
|
+
[Core#71](https://github.com/CocoaPods/Core/pull/71)
|
89
|
+
|
90
|
+
* Properly quote headers in the `-isystem` compiler flag of the aggregate
|
91
|
+
targets.
|
92
|
+
[Eloy Durán](https://github.com/alloy)
|
93
|
+
[#1862](https://github.com/CocoaPods/CocoaPods/issues/1862)
|
94
|
+
[#1894](https://github.com/CocoaPods/CocoaPods/pull/1894)
|
95
|
+
|
5
96
|
## 0.30.0
|
6
|
-
[CocoaPods](https://github.com/
|
97
|
+
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.29.0...0.30.0)
|
7
98
|
|
8
99
|
###### Enhancements
|
9
100
|
|
@@ -26,7 +117,7 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
|
|
26
117
|
|
27
118
|
* Fixes a bug with `pod repo remove` silently handling permission errors.
|
28
119
|
[Kyle Fuller](https://github.com/kylef)
|
29
|
-
#1778
|
120
|
+
[#1778](https://github.com/CocoaPods/CocoaPods/issues/1778)
|
30
121
|
|
31
122
|
* `pod push` now properly checks that the repo has changed before attempting
|
32
123
|
to commit. This only affected pods with special characters (such as `+`) in
|
data/lib/cocoapods.rb
CHANGED
@@ -9,7 +9,10 @@ require 'active_support/core_ext/string/inflections'
|
|
9
9
|
require 'active_support/core_ext/array/conversions'
|
10
10
|
# TODO check what this actually does by the time we're going to add support for
|
11
11
|
# other locales.
|
12
|
-
|
12
|
+
require 'i18n'
|
13
|
+
if I18n.respond_to?(:enforce_available_locales=)
|
14
|
+
I18n.enforce_available_locales = false
|
15
|
+
end
|
13
16
|
|
14
17
|
module Pod
|
15
18
|
require 'pathname'
|
@@ -370,16 +370,21 @@ module Pod
|
|
370
370
|
def spec_and_source_from_set(set)
|
371
371
|
sources = set.sources
|
372
372
|
|
373
|
-
best_source =
|
374
|
-
best_version = best_source.versions(set.name).first
|
373
|
+
best_source = best_version = nil
|
375
374
|
sources.each do |source|
|
376
|
-
|
377
|
-
|
375
|
+
versions = source.versions(set.name)
|
376
|
+
versions.each do |version|
|
377
|
+
if !best_version or version > best_version
|
378
378
|
best_source = source
|
379
379
|
best_version = version
|
380
|
+
end
|
380
381
|
end
|
381
382
|
end
|
382
383
|
|
384
|
+
if !best_source or !best_version
|
385
|
+
raise Informative, "Unable to locate highest known specification for `#{ set.name }'"
|
386
|
+
end
|
387
|
+
|
383
388
|
return best_source.specification(set.name, best_version), best_source
|
384
389
|
end
|
385
390
|
|
@@ -44,13 +44,13 @@ module Pod
|
|
44
44
|
# @return [Xcodeproj::Config]
|
45
45
|
#
|
46
46
|
def generate
|
47
|
-
|
47
|
+
header_search_path_flags = target.sandbox.public_headers.search_paths
|
48
48
|
@xcconfig = Xcodeproj::Config.new({
|
49
49
|
'OTHER_LDFLAGS' => XCConfigHelper.default_ld_flags(target),
|
50
50
|
'HEADER_SEARCH_PATHS' => XCConfigHelper.quote(target.sandbox.public_headers.search_paths),
|
51
51
|
'PODS_ROOT' => target.relative_pods_root,
|
52
52
|
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) COCOAPODS=1',
|
53
|
-
'OTHER_CFLAGS' => '$(inherited) ' + XCConfigHelper.quote(header_search_path_flags)
|
53
|
+
'OTHER_CFLAGS' => '$(inherited) ' + XCConfigHelper.quote(header_search_path_flags, '-isystem')
|
54
54
|
})
|
55
55
|
|
56
56
|
target.pod_targets.each do |pod_target|
|
@@ -13,10 +13,13 @@ module Pod
|
|
13
13
|
# @param [Array<String>] strings
|
14
14
|
# a list of strings.
|
15
15
|
#
|
16
|
+
# @param [String] optional prefix, such as a flag or option.
|
17
|
+
#
|
16
18
|
# @return [String] the resulting string.
|
17
19
|
#
|
18
|
-
def self.quote(strings)
|
19
|
-
|
20
|
+
def self.quote(strings, prefix = nil)
|
21
|
+
prefix = "#{prefix} " if prefix
|
22
|
+
strings.sort.map { |s| %W|#{prefix}"#{s}"| }.join(" ")
|
20
23
|
end
|
21
24
|
|
22
25
|
# @return [String] the default linker flags. `-ObjC` is always included
|
@@ -63,6 +63,12 @@ module Pod
|
|
63
63
|
def install!
|
64
64
|
download_source unless predownloaded? || local?
|
65
65
|
run_prepare_command
|
66
|
+
rescue Informative
|
67
|
+
raise
|
68
|
+
rescue Object => e
|
69
|
+
UI.notice("Error installing #{root_spec.name}")
|
70
|
+
clean!
|
71
|
+
raise
|
66
72
|
end
|
67
73
|
|
68
74
|
# Cleans the installations if appropriate.
|
@@ -95,8 +101,18 @@ module Pod
|
|
95
101
|
def download_source
|
96
102
|
root.rmtree if root.exist?
|
97
103
|
if head_pod?
|
98
|
-
|
99
|
-
|
104
|
+
begin
|
105
|
+
downloader.download_head
|
106
|
+
@specific_source = downloader.checkout_options
|
107
|
+
rescue RuntimeError => e
|
108
|
+
if e.message == 'Abstract method'
|
109
|
+
raise Informative, "The pod '" + root_spec.name + "' does not " +
|
110
|
+
"support the :head option, as it uses a " + downloader.name +
|
111
|
+
" source. Remove that option to use this pod."
|
112
|
+
else
|
113
|
+
raise
|
114
|
+
end
|
115
|
+
end
|
100
116
|
else
|
101
117
|
downloader.download
|
102
118
|
unless downloader.options_specific?
|
@@ -114,12 +130,17 @@ module Pod
|
|
114
130
|
|
115
131
|
# Runs the prepare command bash script of the spec.
|
116
132
|
#
|
133
|
+
# @note Unsets the `CDPATH` env variable before running the
|
134
|
+
# shell script to avoid issues with relative paths
|
135
|
+
# (issue #1694).
|
136
|
+
#
|
117
137
|
# @return [void]
|
118
138
|
#
|
119
139
|
def run_prepare_command
|
120
140
|
return unless root_spec.prepare_command
|
121
141
|
UI.section(" > Running prepare command", '', 1) do
|
122
142
|
Dir.chdir(root) do
|
143
|
+
ENV.delete('CDPATH')
|
123
144
|
prepare_command = root_spec.prepare_command.strip_heredoc.chomp
|
124
145
|
full_command = "\nset -e\n" + prepare_command
|
125
146
|
bash!(full_command)
|
@@ -152,7 +152,7 @@ module Pod
|
|
152
152
|
sources.each do |source|
|
153
153
|
UI.section "Updating spec repo `#{source.name}`" do
|
154
154
|
Dir.chdir(source.data_provider.repo) do
|
155
|
-
output = git!("pull")
|
155
|
+
output = git!("pull --no-rebase --no-commit")
|
156
156
|
UI.puts output if show_output && !config.verbose?
|
157
157
|
end
|
158
158
|
check_version_information(source.data_provider.repo)
|
@@ -207,7 +207,7 @@ module Pod
|
|
207
207
|
|
208
208
|
if config.new_version_message? && cocoapods_update?(versions)
|
209
209
|
UI.puts "\nCocoaPods #{versions['last']} is available.\n" \
|
210
|
-
"To update use: [sudo] gem
|
210
|
+
"To update use: [sudo] gem install cocoapods\n".green
|
211
211
|
end
|
212
212
|
end
|
213
213
|
|
@@ -158,8 +158,8 @@ module Pod
|
|
158
158
|
# Prints the textual representation of a given set.
|
159
159
|
#
|
160
160
|
def pod(set, mode = :normal, statistics_provider = nil)
|
161
|
-
if mode == :
|
162
|
-
puts_indented set.name
|
161
|
+
if mode == :name_and_version
|
162
|
+
puts_indented "#{set.name} #{set.versions.first.version}"
|
163
163
|
else
|
164
164
|
pod = Specification::Set::Presenter.new(set, statistics_provider)
|
165
165
|
title("\n-> #{pod.name} (#{pod.version})".green, '', 1) do
|
data/lib/cocoapods/validator.rb
CHANGED
@@ -196,6 +196,8 @@ module Pod
|
|
196
196
|
# Perform analysis for a given spec (or subspec)
|
197
197
|
#
|
198
198
|
def perform_extensive_analysis(spec)
|
199
|
+
validate_homepage(spec)
|
200
|
+
|
199
201
|
spec.available_platforms.each do |platform|
|
200
202
|
UI.message "\n\n#{spec} - Analyzing on #{platform} platform.".green.reversed
|
201
203
|
@consumer = spec.consumer(platform)
|
@@ -208,18 +210,38 @@ module Pod
|
|
208
210
|
perform_extensive_subspec_analysis(spec) unless @no_subspecs
|
209
211
|
end
|
210
212
|
|
211
|
-
#
|
213
|
+
# Recursively perform the extensive analysis on all subspecs
|
212
214
|
#
|
213
215
|
def perform_extensive_subspec_analysis(spec)
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
216
|
+
spec.subspecs.each do |subspec|
|
217
|
+
@subspec_name = subspec.name
|
218
|
+
perform_extensive_analysis(subspec)
|
219
|
+
end
|
218
220
|
end
|
219
221
|
|
220
222
|
attr_accessor :consumer
|
221
223
|
attr_accessor :subspec_name
|
222
224
|
|
225
|
+
# Performs validations related to the `homepage` attribute.
|
226
|
+
#
|
227
|
+
def validate_homepage(spec)
|
228
|
+
require 'rest'
|
229
|
+
homepage = spec.homepage
|
230
|
+
return unless homepage
|
231
|
+
homepage += '/' unless homepage.end_with?('/')
|
232
|
+
|
233
|
+
begin
|
234
|
+
resp = ::REST.head(homepage)
|
235
|
+
rescue
|
236
|
+
warning "There was a problem validating the homepage."
|
237
|
+
resp = nil
|
238
|
+
end
|
239
|
+
|
240
|
+
if resp && !resp.success?
|
241
|
+
warning "The homepage is not reachable."
|
242
|
+
end
|
243
|
+
end
|
244
|
+
|
223
245
|
def setup_validation_environment
|
224
246
|
validation_dir.rmtree if validation_dir.exist?
|
225
247
|
validation_dir.mkpath
|
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.
|
4
|
+
version: 0.31.0
|
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-03-
|
12
|
+
date: 2014-03-31 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: cocoapods-core
|
@@ -17,14 +17,14 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - '='
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 0.
|
20
|
+
version: 0.31.0
|
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.
|
27
|
+
version: 0.31.0
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: claide
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -45,28 +45,28 @@ dependencies:
|
|
45
45
|
requirements:
|
46
46
|
- - "~>"
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: 0.4.
|
48
|
+
version: 0.4.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
|
-
version: 0.4.
|
55
|
+
version: 0.4.1
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
57
|
name: xcodeproj
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
59
59
|
requirements:
|
60
60
|
- - "~>"
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: 0.
|
62
|
+
version: 0.16.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
|
-
version: 0.
|
69
|
+
version: 0.16.0
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
71
|
name: cocoapods-try
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
@@ -268,19 +268,45 @@ homepage: https://github.com/CocoaPods/CocoaPods
|
|
268
268
|
licenses:
|
269
269
|
- MIT
|
270
270
|
metadata: {}
|
271
|
-
post_install_message: "\nCHANGELOG:\n\n## 0.
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
\
|
277
|
-
|
278
|
-
|
279
|
-
\ [
|
280
|
-
|
281
|
-
|
282
|
-
\
|
283
|
-
|
271
|
+
post_install_message: "\nCHANGELOG:\n\n## 0.31.0\n[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.30.0...0.31.0)\n•
|
272
|
+
[CocoaPods-Core](https://github.com/CocoaPods/Core/compare/0.30.0...0.31.0)\n\n#####
|
273
|
+
Enhancements\n\n* Warnings are not promoted to errors anymore to maximise compatibility
|
274
|
+
with\n existing libraries. \n [Fabio Pelosin](https://github.com/irrationalfab)\n
|
275
|
+
\ [#1629](https://github.com/CocoaPods/CocoaPods/issues/1629)\n\n* Include the versions
|
276
|
+
of the Pods to the output of `pod list`. \n [Stefan Damm](https://github.com/StefanDamm)\n
|
277
|
+
\ [Robert Zuber](https://github.com/z00b)\n [#1617](https://github.com/CocoaPods/CocoaPods/issues/1617)\n\n*
|
278
|
+
The linter will now check the reachability of the homepage of Podspecs during\n
|
279
|
+
\ a full lint. \n [Richard Lee](https://github.com/dlackty)\n [Fabio Pelosin](https://github.com/irrationalfab)\n
|
280
|
+
\ [#1704](https://github.com/CocoaPods/CocoaPods/issues/1704)\n [Core#70](https://github.com/CocoaPods/Core/pull/70)\n\n*
|
281
|
+
Improved detection of the last version of a specification in `pod spec`\n subcommands.
|
282
|
+
\ \n [Laurent Sansonetti](https://github.com/lrz)\n [#1953](https://github.com/CocoaPods/CocoaPods/pull/1953)\n\n*
|
283
|
+
Display advised settings for Travis CI in the warning related presented when\n the
|
284
|
+
terminal encoding is not set to UTF-8. \n [Richard Lee](https://github.com/dlackty)\n
|
285
|
+
\ [#1933](https://github.com/CocoaPods/CocoaPods/issues/1933)\n [#1941](https://github.com/CocoaPods/CocoaPods/pull/1941)\n\n*
|
286
|
+
Unset the `CDPATH` env variable before shelling-out to `prepare_command`. \n [Marc
|
287
|
+
Boquet](https://github.com/apalancat)\n [#1943](https://github.com/CocoaPods/CocoaPods/pull/1943)\n\n#####
|
288
|
+
Bug Fixes\n\n* Resolve crash related to the I18n deprecation warning. \n [Eloy
|
289
|
+
Durán](https://github.com/alloy)\n [#1950](https://github.com/CocoaPods/CocoaPods/issues/1950)\n\n*
|
290
|
+
Fix compilation issues related to the native Extension of Xcodeproj. \n [Eloy
|
291
|
+
Durán](https://github.com/alloy)\n\n* Robustness against user Git configuration
|
292
|
+
and against merge commits in `pod\n repo` subcommands. \n [Boris Bügling](https://github.com/neonichu)\n
|
293
|
+
\ [#1949](https://github.com/CocoaPods/CocoaPods/issues/1949)\n [#1978](https://github.com/CocoaPods/CocoaPods/pull/1978)\n\n*
|
294
|
+
Gracefully inform the user if the `:head` option is not supported for a given\n
|
295
|
+
\ download strategy. \n [Boris Bügling](https://github.com/neonichu)\n [#1947](https://github.com/CocoaPods/CocoaPods/issues/1947)\n
|
296
|
+
\ [#1958](https://github.com/CocoaPods/CocoaPods/pull/1958)\n\n* Cleanup a pod directory
|
297
|
+
if error occurs while downloading. \n [Alex Rothenberg](https://github.com/alexrothenberg)\n
|
298
|
+
\ [#1842](https://github.com/CocoaPods/CocoaPods/issues/1842)\n [#1960](https://github.com/CocoaPods/CocoaPods/pull/1960)\n\n*
|
299
|
+
No longer warn for Github repositories with OAuth authentication. \n [Boris Bügling](https://github.com/neonichu)\n
|
300
|
+
\ [#1928](https://github.com/CocoaPods/CocoaPods/issues/1928)\n [Core#77](https://github.com/CocoaPods/Core/pull/77)\n\n*
|
301
|
+
Fix for when using `s.version` as the `:tag` for a git repository in a\n Podspec.
|
302
|
+
\ \n [Joel Parsons](https://github.com/joelparsons)\n [#1721](https://github.com/CocoaPods/CocoaPods/issues/1721)\n
|
303
|
+
\ [Core#72](https://github.com/CocoaPods/Core/pull/72)\n\n* Improved escaping of
|
304
|
+
paths in Git downloader. \n [Vladimir Burdukov](https://github.com/chipp)\n [cocoapods-downloader#14](https://github.com/CocoaPods/cocoapods-downloader/pull/14)\n\n*
|
305
|
+
Podspec without explicitly set `requires_arc` attribute no longer passes the\n lint.
|
306
|
+
\ \n [Richard Lee](https://github.com/dlackty)\n [#1840](https://github.com/CocoaPods/CocoaPods/issues/1840)\n
|
307
|
+
\ [Core#71](https://github.com/CocoaPods/Core/pull/71)\n\n* Properly quote headers
|
308
|
+
in the `-isystem` compiler flag of the aggregate\n targets. \n [Eloy Durán](https://github.com/alloy)\n
|
309
|
+
\ [#1862](https://github.com/CocoaPods/CocoaPods/issues/1862)\n [#1894](https://github.com/CocoaPods/CocoaPods/pull/1894)\n\n"
|
284
310
|
rdoc_options: []
|
285
311
|
require_paths:
|
286
312
|
- lib
|