Skip to content

Commit

Permalink
Rebrand to EY Cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Emde committed Dec 14, 2011
1 parent b8983de commit 465a7ff
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/engineyard/api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def self.request(path, opts={})
rescue RestClient::ResourceNotFound
raise ResourceNotFound, "The requested resource could not be found"
rescue RestClient::BadGateway
raise RequestFailed, "AppCloud API is temporarily unavailable. Please try again soon."
raise RequestFailed, "EY Cloud API is temporarily unavailable. Please try again soon."
rescue RestClient::RequestFailed => e
raise RequestFailed, "#{e.message} #{e.response}"
rescue OpenSSL::SSL::SSLError
Expand Down
2 changes: 1 addition & 1 deletion lib/engineyard/cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def environments
apps = api.apps_for_repo(repo)

if apps.size > 1
message = "This git repo matches multiple Applications in AppCloud:\n"
message = "This git repo matches multiple Applications in EY Cloud:\n"
apps.each { |app| message << "\t#{app.name}\n" }
message << "The following environments contain those applications:\n\n"
EY.ui.warn(message)
Expand Down
2 changes: 1 addition & 1 deletion lib/engineyard/cli/recipes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def apply
"Upload custom chef recipes to specified environment so they can be applied."
long_desc <<-DESC
Make an archive of the "cookbooks/" subdirectory in your current working
directory and upload it to AppCloud's recipe storage.
directory and upload it to EY Cloud's recipe storage.
Alternatively, specify a .tgz of a cookbooks/ directory yourself as follows:
Expand Down
2 changes: 1 addition & 1 deletion lib/engineyard/model/instance.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def deploy(app, ref, migration_command=nil, extra_configuration=nil, verbose=fal
ensure
if deployment
deployment.finished(successful, output)
EY.ui.info "#{successful ? 'Successful' : 'Failed'} deployment recorded in AppCloud"
EY.ui.info "#{successful ? 'Successful' : 'Failed'} deployment recorded in EY Cloud"
end
end

Expand Down
2 changes: 1 addition & 1 deletion spec/engineyard/api_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@

lambda {
EY::API.fetch_token("a@b.com", "foo")
}.should raise_error(EY::API::RequestFailed, /AppCloud API is temporarily unavailable/)
}.should raise_error(EY::API::RequestFailed, /API is temporarily unavailable/)
end
end
2 changes: 1 addition & 1 deletion spec/ey/deploy_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def command_to_run(opts)

def verify_ran(scenario)
@out.should match(/Beginning deploy of ref '[^']+' for '#{scenario[:application]}' in '#{scenario[:environment]}'/)
@out.should match(/deployment recorded in AppCloud/i)
@out.should match(/deployment recorded/i)
@ssh_commands.should have_command_like(/engineyard-serverside.*deploy.*--app #{scenario[:application]}/)
end

Expand Down

0 comments on commit 465a7ff

Please sign in to comment.