cocoaseeds 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 886c78815e21ba590aa79fc3de8747fa5368571f
4
- data.tar.gz: 0dfaa0809236b86c81e3a408c6cdfe5b1743375a
3
+ metadata.gz: 41e6d9a834427b838d21d2ca857c0c6933f5da4d
4
+ data.tar.gz: 15ac0913f812185465faf744a516690e0bce6e92
5
5
  SHA512:
6
- metadata.gz: 65a198e29c1ff5f71c2ef9c76bc52ef90118e2f4902a595689249654ed8a7d39e0d742d92ab24a0c7e96c3150029aac7c3a29ba9c7bfa8993a69abfab1c9b681
7
- data.tar.gz: d4102131c54cb2bdb7ba23a476601f89044ac6ee47aae69db8e406cc401bc02672f8622305d0f78d46fb0a0d13c76ef2b7aa4f9298f6bdf472a25d13d036cd35
6
+ metadata.gz: 23833083862e852475995ff3f78ba9b8bfbc18b24dad36abfb62342c15941f9c80078cbd88bc844255cbc3acfbfa2a9fc75e126b6c9a79cab95b975646778aa1
7
+ data.tar.gz: 8967fd0a76b2b02cf253e89df1324759b660652a398a7a8a35e3d88d0877b22ffb03e57d32ab8dd44bf1221e6faa4d8fce664574f82d70cda4229c66c5efc4a3
@@ -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\
@@ -1,3 +1,3 @@
1
1
  module Seeds
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.1"
3
3
  end
@@ -126,7 +126,7 @@ module Xcodeproj::Project::Object
126
126
  else
127
127
  build_file = project.new_with_uuid(PBXBuildFile, uuid)
128
128
  build_file.file_ref = file_ref
129
- files << build_file
129
+ files.insert(0, build_file)
130
130
  build_file
131
131
  end
132
132
  end
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.0
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-03 00:00:00.000000000 Z
11
+ date: 2015-12-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: xcodeproj