cocoaseeds 0.6.0 → 0.6.1
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/lib/cocoaseeds/core.rb +6 -0
- data/lib/cocoaseeds/version.rb +1 -1
- data/lib/cocoaseeds/xcodehelper.rb +1 -1
- 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: 41e6d9a834427b838d21d2ca857c0c6933f5da4d
|
4
|
+
data.tar.gz: 15ac0913f812185465faf744a516690e0bce6e92
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 23833083862e852475995ff3f78ba9b8bfbc18b24dad36abfb62342c15941f9c80078cbd88bc844255cbc3acfbfa2a9fc75e126b6c9a79cab95b975646778aa1
|
7
|
+
data.tar.gz: 8967fd0a76b2b02cf253e89df1324759b660652a398a7a8a35e3d88d0877b22ffb03e57d32ab8dd44bf1221e6faa4d8fce664574f82d70cda4229c66c5efc4a3
|
data/lib/cocoaseeds/core.rb
CHANGED
@@ -384,6 +384,12 @@ module Seeds
|
|
384
384
|
command += " #{dirname} 2>&1"
|
385
385
|
output = `#{command}`
|
386
386
|
|
387
|
+
unable_to_access = output.include?("unable to access")
|
388
|
+
if unable_to_access and output.include?("Failed to connect to")
|
389
|
+
raise Seeds::Exception.new\
|
390
|
+
"#{seed.name}: Failed to connect to #{seed.url}. \n#{output}"
|
391
|
+
end
|
392
|
+
|
387
393
|
not_found = output.include?("not found")
|
388
394
|
if not_found and output.include?("repository")
|
389
395
|
raise Seeds::Exception.new\
|
data/lib/cocoaseeds/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoaseeds
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Suyeol Jeon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-12-
|
11
|
+
date: 2015-12-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: xcodeproj
|