elastic-beanstalk 1.1.7 → 1.1.8

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: db486b8d00fc9b4c31c75b6b9c879e204d5017f3
4
- data.tar.gz: 0c4b527fca49fe0456492b364b02f7414db5e2a3
3
+ metadata.gz: 6114495eb435a05271c8a09e3d87e1cb2536929a
4
+ data.tar.gz: b8e14351242af8b0b7aa1f53f5ac288c3c2ac2d8
5
5
  SHA512:
6
- metadata.gz: 833300ff20288c4b09aaf1750ec1b87a085feccbc02dbfb7cff2feea4918277eb6194943923b505858e7dfee19e65157ed613da348a182c14c49e0769e2b629f
7
- data.tar.gz: a7bad06e982e9a6f5273aff034bc9712bcc45c91377df7e1e597bb195384ef3799b9a97b81a4dd84ae5b4598d4c2267a0fa60e9218cee07c023bdd0d97c62321
6
+ metadata.gz: 1f1e02e3b49cc521882b05fb828ce4432a949a5f360a8dc89a57046b070f369bcbe2cf89a879a3711a2324c7648b4e16cea6fb4e8670f3abcfa0236c0ec715df
7
+ data.tar.gz: 7a0e6a30be0cd603bb78937076e8688daf2188a5d2adfb4181031bf60332dde0486faea69d878481d8663198e8a89d7ee1283249298902b50e8b1e2523aa8114
@@ -340,12 +340,12 @@ namespace :eb do
340
340
  #
341
341
  #
342
342
  desc '** Warning: Destroy Elastic Beanstalk application and *all* environments.'
343
- task :destroy, [:force] do |t, args|
343
+ task :destroy, [:environment, :force] => [:config] do |t, args|
344
344
 
345
345
  if args[:force].eql? 'y'
346
346
  destroy()
347
347
  else
348
- puts 'Are you sure you wish to destroy application and *all* environments? (y/n)'
348
+ puts "Are you sure you wish to destroy #{EbConfig.app}-#{EbConfig.environment}? (y/n)"
349
349
  input = STDIN.gets.strip
350
350
  if input == 'y'
351
351
  destroy()
@@ -385,7 +385,6 @@ namespace :eb do
385
385
  def destroy
386
386
  Rake::Task['eb:config'].invoke
387
387
  EbDeployer.destroy(application: EbConfig.app, environment: EbConfig.environment)
388
- puts "Destroy issued to AWS."
389
388
  end
390
389
 
391
390
  # validate file exists
@@ -1,5 +1,5 @@
1
1
  module Elastic
2
2
  module Beanstalk
3
- VERSION = '1.1.7'
3
+ VERSION = '1.1.8'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: elastic-beanstalk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.7
4
+ version: 1.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Ross