cf_deployer 1.2.11 → 1.3.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.
Files changed (64) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +0 -0
  3. data/ChangeLog.md +0 -0
  4. data/DETAILS.md +0 -0
  5. data/FAQ.md +0 -0
  6. data/Gemfile +0 -0
  7. data/Gemfile.lock +1 -1
  8. data/LICENSE +0 -0
  9. data/QUICKSTART.md +0 -0
  10. data/README.md +0 -0
  11. data/Rakefile +0 -0
  12. data/cf_deployer.gemspec +0 -0
  13. data/lib/cf_deployer.rb +0 -0
  14. data/lib/cf_deployer/application.rb +0 -0
  15. data/lib/cf_deployer/application_error.rb +0 -0
  16. data/lib/cf_deployer/aws_constants.rb +0 -0
  17. data/lib/cf_deployer/cli.rb +0 -0
  18. data/lib/cf_deployer/component.rb +0 -0
  19. data/lib/cf_deployer/config_loader.rb +0 -0
  20. data/lib/cf_deployer/config_validation.rb +0 -0
  21. data/lib/cf_deployer/defaults.rb +0 -0
  22. data/lib/cf_deployer/deployment_strategy/auto_scaling_group_swap.rb +0 -0
  23. data/lib/cf_deployer/deployment_strategy/base.rb +0 -0
  24. data/lib/cf_deployer/deployment_strategy/blue_green.rb +0 -0
  25. data/lib/cf_deployer/deployment_strategy/cname_swap.rb +1 -1
  26. data/lib/cf_deployer/deployment_strategy/create_or_update.rb +0 -0
  27. data/lib/cf_deployer/driver/auto_scaling_group.rb +0 -0
  28. data/lib/cf_deployer/driver/cloud_formation_driver.rb +0 -0
  29. data/lib/cf_deployer/driver/dry_run.rb +0 -0
  30. data/lib/cf_deployer/driver/elb_driver.rb +0 -0
  31. data/lib/cf_deployer/driver/instance.rb +0 -0
  32. data/lib/cf_deployer/driver/route53_driver.rb +0 -0
  33. data/lib/cf_deployer/driver/verisign_driver.rb +0 -0
  34. data/lib/cf_deployer/hook.rb +0 -0
  35. data/lib/cf_deployer/logger.rb +0 -0
  36. data/lib/cf_deployer/stack.rb +0 -0
  37. data/lib/cf_deployer/status_presenter.rb +0 -0
  38. data/lib/cf_deployer/version.rb +1 -1
  39. data/spec/fakes/instance.rb +0 -0
  40. data/spec/fakes/route53_client.rb +0 -0
  41. data/spec/fakes/stack.rb +0 -0
  42. data/spec/functional/deploy_spec.rb +0 -0
  43. data/spec/functional/kill_inactive_spec.rb +0 -0
  44. data/spec/functional_spec_helper.rb +0 -0
  45. data/spec/spec_helper.rb +0 -0
  46. data/spec/unit/application_spec.rb +0 -0
  47. data/spec/unit/component_spec.rb +0 -0
  48. data/spec/unit/config_loader_spec.rb +0 -0
  49. data/spec/unit/config_validation_spec.rb +0 -0
  50. data/spec/unit/deployment_strategy/auto_scaling_group_swap_spec.rb +0 -0
  51. data/spec/unit/deployment_strategy/base_spec.rb +0 -0
  52. data/spec/unit/deployment_strategy/cname_swap_spec.rb +0 -0
  53. data/spec/unit/deployment_strategy/create_or_update_spec.rb +0 -0
  54. data/spec/unit/deployment_strategy/deployment_strategy_spec.rb +0 -0
  55. data/spec/unit/driver/auto_scaling_group_spec.rb +0 -0
  56. data/spec/unit/driver/cloud_formation_spec.rb +0 -0
  57. data/spec/unit/driver/elb_spec.rb +0 -0
  58. data/spec/unit/driver/instance_spec.rb +0 -0
  59. data/spec/unit/driver/route53_spec.rb +0 -0
  60. data/spec/unit/driver/verisign_spec.rb +0 -0
  61. data/spec/unit/hook_spec.rb +0 -0
  62. data/spec/unit/stack_spec.rb +0 -0
  63. data/spec/unit/status_presenter_spec.rb +0 -0
  64. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4084bea273ad75869cd75c03ba6c6eb98496b2dc
4
- data.tar.gz: ce1a68d375d5058e6b1c4d7cb8566542c7499bab
3
+ metadata.gz: 1db5cec4a3e85b734de2469723174af6076d0334
4
+ data.tar.gz: 79eebbe809bb12a92a59c4c8eed7d7064df46fbd
5
5
  SHA512:
6
- metadata.gz: 0227d848398efd43b2a8a007e159ff1cbbce34172f0fa592ca1b7d49e3bc8c0cdc01291946c09439541ab6d50b9efa49b5ca658188df0c71c00ef32f494cf1f7
7
- data.tar.gz: 78932f8530e973d070eaa01565b0fd457db7718720a21ac2bd0390147ac7266d9e0ecc4589cfd6a4b30a6abf7a63aba788151bd62b8512ae5cb25493b2ab653f
6
+ metadata.gz: 8568f79cd0a27b30174422ce1edb8cfd05e9c554def87df53423cea0fd3f7547e221c6abf53335dfed02aa735cb73a756b2277dddbe78deaa16ad6a1fa51a010
7
+ data.tar.gz: 5d7fc88066821fc2bffd2abed89914354e516d913635c1274b8bcf681e8417505ff3c9e5ba1c13098e475401921d1f353317f604a189225afdb5e93b3e0f06ed
data/.gitignore CHANGED
File without changes
data/ChangeLog.md CHANGED
File without changes
data/DETAILS.md CHANGED
File without changes
data/FAQ.md CHANGED
File without changes
data/Gemfile CHANGED
File without changes
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cf_deployer (1.2.11)
4
+ cf_deployer (1.3.0)
5
5
  aws-sdk
6
6
  log4r
7
7
  rainbow
data/LICENSE CHANGED
File without changes
data/QUICKSTART.md CHANGED
File without changes
data/README.md CHANGED
File without changes
data/Rakefile CHANGED
File without changes
data/cf_deployer.gemspec CHANGED
File without changes
data/lib/cf_deployer.rb CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -7,6 +7,7 @@ module CfDeployer
7
7
  delete_stack inactive_stack
8
8
  create_inactive_stack
9
9
  warm_up_inactive_stack
10
+ run_hook(:'after-create')
10
11
  swap_cname
11
12
  Kernel.sleep 60
12
13
  run_hook(:'after-swap')
@@ -44,7 +45,6 @@ module CfDeployer
44
45
  def create_inactive_stack
45
46
  inactive_stack.deploy
46
47
  get_parameters_outputs(inactive_stack)
47
- run_hook(:'after-create')
48
48
  end
49
49
 
50
50
  def swap_cname
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,3 +1,3 @@
1
1
  module CfDeployer
2
- VERSION = "1.2.11"
2
+ VERSION = "1.3.0"
3
3
  end
File without changes
File without changes
data/spec/fakes/stack.rb CHANGED
File without changes
File without changes
File without changes
File without changes
data/spec/spec_helper.rb CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cf_deployer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.11
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jame Brechtel
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2014-06-27 00:00:00.000000000 Z
14
+ date: 2014-07-01 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: aws-sdk