engineyard 0.10.0 → 1.0.0
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.
- data/lib/engineyard/cli.rb +1 -1
- data/lib/engineyard/model/instance.rb +1 -1
- data/lib/engineyard/version.rb +1 -1
- metadata +11 -25
data/lib/engineyard/cli.rb
CHANGED
|
@@ -75,7 +75,7 @@ module EY
|
|
|
75
75
|
raise exists ? EnvironmentUnlinkedError.new(options[:environment]) : e
|
|
76
76
|
end
|
|
77
77
|
|
|
78
|
-
desc "environments [--all]", "List environments."
|
|
78
|
+
desc "environments [--all]", "List environments for this app; use --all to list all environments."
|
|
79
79
|
long_desc <<-DESC
|
|
80
80
|
By default, environments for this app are displayed. The --all option will
|
|
81
81
|
display all environments, including those for this app.
|
|
@@ -3,7 +3,7 @@ require 'escape'
|
|
|
3
3
|
module EY
|
|
4
4
|
module Model
|
|
5
5
|
class Instance < ApiStruct.new(:id, :role, :name, :status, :amazon_id, :public_hostname, :environment)
|
|
6
|
-
EYDEPLOY_VERSION = ENV["EY_DEPLOY_VERSION"] || "0.
|
|
6
|
+
EYDEPLOY_VERSION = ENV["EY_DEPLOY_VERSION"] || "1.0.0"
|
|
7
7
|
EXIT_STATUS = Hash.new { |h,k| raise EY::Error, "ey-deploy version checker exited with unknown status code #{k}" }
|
|
8
8
|
EXIT_STATUS.merge!({
|
|
9
9
|
255 => :ssh_failed,
|
data/lib/engineyard/version.rb
CHANGED
metadata
CHANGED
|
@@ -3,10 +3,10 @@ name: engineyard
|
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: false
|
|
5
5
|
segments:
|
|
6
|
+
- 1
|
|
6
7
|
- 0
|
|
7
|
-
- 10
|
|
8
8
|
- 0
|
|
9
|
-
version: 0.
|
|
9
|
+
version: 1.0.0
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- EY Cloud Team
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-07-
|
|
17
|
+
date: 2010-07-19 00:00:00 -07:00
|
|
18
18
|
default_executable: ey
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -45,30 +45,30 @@ dependencies:
|
|
|
45
45
|
version_requirements: *id002
|
|
46
46
|
- !ruby/object:Gem::Dependency
|
|
47
47
|
prerelease: false
|
|
48
|
-
name:
|
|
48
|
+
name: escape
|
|
49
49
|
requirement: &id003 !ruby/object:Gem::Requirement
|
|
50
50
|
requirements:
|
|
51
51
|
- - ~>
|
|
52
52
|
- !ruby/object:Gem::Version
|
|
53
53
|
segments:
|
|
54
54
|
- 0
|
|
55
|
-
-
|
|
56
|
-
-
|
|
57
|
-
version: 0.
|
|
55
|
+
- 0
|
|
56
|
+
- 4
|
|
57
|
+
version: 0.0.4
|
|
58
58
|
type: :runtime
|
|
59
59
|
version_requirements: *id003
|
|
60
60
|
- !ruby/object:Gem::Dependency
|
|
61
61
|
prerelease: false
|
|
62
|
-
name:
|
|
62
|
+
name: json
|
|
63
63
|
requirement: &id004 !ruby/object:Gem::Requirement
|
|
64
64
|
requirements:
|
|
65
65
|
- - ~>
|
|
66
66
|
- !ruby/object:Gem::Version
|
|
67
67
|
segments:
|
|
68
|
-
-
|
|
69
|
-
- 0
|
|
68
|
+
- 1
|
|
70
69
|
- 4
|
|
71
|
-
|
|
70
|
+
- 0
|
|
71
|
+
version: 1.4.0
|
|
72
72
|
type: :runtime
|
|
73
73
|
version_requirements: *id004
|
|
74
74
|
- !ruby/object:Gem::Dependency
|
|
@@ -84,20 +84,6 @@ dependencies:
|
|
|
84
84
|
version: "1.4"
|
|
85
85
|
type: :runtime
|
|
86
86
|
version_requirements: *id005
|
|
87
|
-
- !ruby/object:Gem::Dependency
|
|
88
|
-
prerelease: false
|
|
89
|
-
name: json
|
|
90
|
-
requirement: &id006 !ruby/object:Gem::Requirement
|
|
91
|
-
requirements:
|
|
92
|
-
- - ~>
|
|
93
|
-
- !ruby/object:Gem::Version
|
|
94
|
-
segments:
|
|
95
|
-
- 1
|
|
96
|
-
- 4
|
|
97
|
-
- 0
|
|
98
|
-
version: 1.4.0
|
|
99
|
-
type: :runtime
|
|
100
|
-
version_requirements: *id006
|
|
101
87
|
description: This gem allows you to deploy your rails application to the Engine Yard cloud directly from the command line.
|
|
102
88
|
email: cloud@engineyard.com
|
|
103
89
|
executables:
|