cocoapods-core 1.1.0.beta.2 → 1.1.0.rc.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/cocoapods-core/gem_version.rb +1 -1
- data/lib/cocoapods-core/master_source.rb +1 -1
- data/lib/cocoapods-core/source.rb +21 -39
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8dd8493ba3541dfee0d29c01a6bc17e5631b1688
|
4
|
+
data.tar.gz: fc5724cf0f4a28abae4c6f8032fd62bf1d441d40
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf6d0562c39e02525338a4c3009156b5599bc1c9238612af5febef7b94fa3da0cb9ccd713a65a21a8948bb3a07a550aeda05102035d581fc7d8d7af7f74794b7
|
7
|
+
data.tar.gz: 120832f370c037c813d7860b6fd085b6634b774bae26d3b71a608614b4768c7be1cb017c6ec1a56bca12da88132345c20bf1bade3433b37129beb51c5e2ebd56
|
@@ -28,7 +28,7 @@ module Pod
|
|
28
28
|
# @return [Bool] Whether the given source should be updated.
|
29
29
|
#
|
30
30
|
def requires_update?
|
31
|
-
commit_hash =
|
31
|
+
commit_hash = git_commit_hash
|
32
32
|
GitHub.modified_since_commit('CocoaPods/Specs', commit_hash)
|
33
33
|
end
|
34
34
|
end
|
@@ -41,14 +41,11 @@ module Pod
|
|
41
41
|
# option. See https://github.com/CocoaPods/CocoaPods/issues/2724.
|
42
42
|
#
|
43
43
|
def url
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
elsif (repo + '.git').exist?
|
50
|
-
"file://#{repo}/.git"
|
51
|
-
end
|
44
|
+
remote = repo_git(%w(config --get remote.origin.url))
|
45
|
+
if !remote.empty?
|
46
|
+
remote
|
47
|
+
elsif (repo + '.git').exist?
|
48
|
+
"file://#{repo}/.git"
|
52
49
|
end
|
53
50
|
end
|
54
51
|
|
@@ -333,26 +330,20 @@ module Pod
|
|
333
330
|
# Returns the list of changed spec paths.
|
334
331
|
#
|
335
332
|
def update(show_output)
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
"it is the last version compatible with CocoaPods #{CORE_VERSION}."
|
345
|
-
git(['checkout', tag])
|
346
|
-
end
|
347
|
-
changed_spec_paths = diff_until_commit_hash(prev_commit_hash)
|
333
|
+
prev_commit_hash = git_commit_hash
|
334
|
+
update_git_repo(show_output)
|
335
|
+
refresh_metadata
|
336
|
+
if version = metadata.last_compatible_version(Version.new(CORE_VERSION))
|
337
|
+
tag = "v#{version}"
|
338
|
+
CoreUI.warn "Using the `#{tag}` tag of the `#{name}` source because " \
|
339
|
+
"it is the last version compatible with CocoaPods #{CORE_VERSION}."
|
340
|
+
repo_git(['checkout', tag])
|
348
341
|
end
|
349
|
-
|
342
|
+
diff_until_commit_hash(prev_commit_hash)
|
350
343
|
end
|
351
344
|
|
352
345
|
def git?
|
353
|
-
|
354
|
-
!git(%w(rev-parse HEAD)).empty?
|
355
|
-
end
|
346
|
+
!repo_git(%w(rev-parse HEAD)).empty?
|
356
347
|
end
|
357
348
|
|
358
349
|
def verify_compatibility!
|
@@ -398,12 +389,6 @@ module Pod
|
|
398
389
|
# @group Private Helpers
|
399
390
|
#-------------------------------------------------------------------------#
|
400
391
|
|
401
|
-
def ensure_in_repo!
|
402
|
-
return if File.identical?(Pathname.pwd.realpath.to_s, repo.realpath.to_s)
|
403
|
-
raise StandardError, "Must be in the root of the repo (#{repo}), " \
|
404
|
-
"instead in #{Pathname.pwd}."
|
405
|
-
end
|
406
|
-
|
407
392
|
# Loads the specification for the given Pod gracefully.
|
408
393
|
#
|
409
394
|
# @param [String] name
|
@@ -428,14 +413,12 @@ module Pod
|
|
428
413
|
end
|
429
414
|
|
430
415
|
def git_commit_hash
|
431
|
-
|
432
|
-
git(%w(rev-parse HEAD))
|
416
|
+
repo_git(%w(rev-parse HEAD))
|
433
417
|
end
|
434
418
|
|
435
419
|
def update_git_repo(show_output = false)
|
436
|
-
|
437
|
-
|
438
|
-
output = git(%w(pull --ff-only), :include_error => true)
|
420
|
+
repo_git(['checkout', git_tracking_branch])
|
421
|
+
output = repo_git(%w(pull --ff-only), :include_error => true)
|
439
422
|
CoreUI.puts output if show_output
|
440
423
|
end
|
441
424
|
|
@@ -445,12 +428,11 @@ module Pod
|
|
445
428
|
end
|
446
429
|
|
447
430
|
def diff_until_commit_hash(commit_hash)
|
448
|
-
|
449
|
-
git(%W(diff --name-only #{commit_hash}..HEAD)).split("\n")
|
431
|
+
repo_git(%W(diff --name-only #{commit_hash}..HEAD)).split("\n")
|
450
432
|
end
|
451
433
|
|
452
|
-
def
|
453
|
-
command =
|
434
|
+
def repo_git(args, include_error: false)
|
435
|
+
command = "git -C \"#{repo}\" " << args.join(' ')
|
454
436
|
command << ' 2>&1' if include_error
|
455
437
|
(`#{command}` || '').strip
|
456
438
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.0.
|
4
|
+
version: 1.1.0.rc.1
|
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: 2016-
|
12
|
+
date: 2016-09-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|