dawn-cli 0.10.0 → 0.10.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: fb88fe1d21465c414f7484e29a1ea5c0b5707fce
4
- data.tar.gz: ab4c46253f6b16ee661d6e80502ffc075087fea3
3
+ metadata.gz: 6a0f802b47068dbd5b7dfc3cddcfd42308434fbc
4
+ data.tar.gz: b4116e90f7b8e0a7551e7b8faec749ce55c41f58
5
5
  SHA512:
6
- metadata.gz: 3a0a7ddb400aa20f6e1159f6ddce03f2a337a7a435fa344b1b0a6f3d829a166047293d62d828cdb11dedbf5b71dd4a7a59323c6ac558082e9feb538016775552
7
- data.tar.gz: 9bed41ab03f8752d942d738c8b52eda1e6fd8a5b2e6bfd0e8865f30223baef4a48c8dccf46f2c3e1c5e197fe067c80d4af1ebfd2fd79c36998f3feb5c61b345e
6
+ metadata.gz: c4dd858769382abc3383446f7549f9b0b78651e78ce11cf0458b1f5eed5bd4cf18359ffbc30dc190b4d4f07f8e8d6728387a742d0fafc0d9aac8cc19a1915b4e
7
+ data.tar.gz: ca2708cf733c4145d3151ab6a84acf2f1ddb5ae492c7926dae58b2dfb26ebcedf6898f788075c7ef16b895b73ca0ff4176da190909d13cf971b4212fa51d31e9
@@ -1,2 +1,4 @@
1
1
  Overview
2
2
  ========
3
+ ## 0.10.1
4
+ * Dawn's remote required ssh:// (real bummer)
@@ -17,6 +17,8 @@ module Dawn
17
17
  appname = app.name
18
18
  git_add_dawn_remote app
19
19
  say "\tAPP\t#{app.name}"
20
+ rescue Excon::Errors::UnprocessableEntity => ex
21
+ handle_abort_exception("dawn create", ex)
20
22
  end
21
23
 
22
24
  ###
@@ -59,7 +59,7 @@ module Dawn
59
59
 
60
60
  def git_add_dawn_remote(app)
61
61
  abort "dawn remote already exists, please `dawn app:delete` first" if git_dawn_remote?
62
- git "remote add dawn git@#{Dawn.git_host}:#{app.git}"
62
+ git "remote add dawn ssh://git@#{Dawn.git_host}:#{app.git}"
63
63
  end
64
64
 
65
65
  def extract_app_remote_from_git_config
@@ -3,7 +3,7 @@ module Dawn
3
3
  module Version
4
4
  MAJOR = 0
5
5
  MINOR = 10
6
- PATCH = 0
6
+ PATCH = 1
7
7
  BUILD = nil
8
8
  STRING = [[MAJOR, MINOR, PATCH].compact.join("."), BUILD].compact.join("-").freeze
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dawn-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Blaž Hrastnik
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-06-24 00:00:00.000000000 Z
12
+ date: 2014-07-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: docopt