bb_deploy 0.0.1.7 → 0.0.1.8

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7eccbfb23fa726f156bf317e9cf1e0aafb638f87
4
- data.tar.gz: 4e7a72208272f1f7107d7d1de25988ed283b7445
3
+ metadata.gz: 72228724aa6f02091a53012798257ec6244f029c
4
+ data.tar.gz: 77f88ffcfd20d18f56ed463721730aef27814403
5
5
  SHA512:
6
- metadata.gz: 3bfc9eaaff5f41b0e3ca2fbcf1280a31edfadd2345bea5cd802d470fbc6b4f08c61b72afeb46b5268dc04a0df8514cc741d5078fe8cd7b0acfe69e3886cdadce
7
- data.tar.gz: 0c778f655e901328d94a129f89801abcb3733ccf2aa413fb0d336e11b7010c62a8b2294286384d07778fef237d775e625383e5743ec4885b0ee4ed93ee36162e
6
+ metadata.gz: 2ac67cdfaf15408cb88cc9631e2d1a7efb0f94136ff1ec08907ff8623a5a2a4fb318ff63756a192e912bcbded8af7abc5a8c4576774f8ae9f5ec170cc6f835a8
7
+ data.tar.gz: cedbd6a9ab5a9c4030616d7888ee6fe609cb6f4ddad10eeb7b74db7aa62d8fc8d8d907fe849b4147de14724ac0bfd3cabfef5e735c9baf7dd4642a7d492af129
@@ -0,0 +1,12 @@
1
+ Config TODO:
2
+
3
+ set logentries token in config -- (get_heroku_variable(@phase, 'DEPLOY_LOG_TOKEN'))
4
+ qa, staging, production urls
5
+
6
+
7
+ Other TODO:
8
+
9
+ Raise proper error if no slack webhook key present in config
10
+ Verify rake task heroku:maint:on exists for application using gem
11
+ Verify we have heroku configuration/creds
12
+ Config to only notify jake of downtime on clarity (probably should only happen on staging)
@@ -0,0 +1,17 @@
1
+ require_relative '../bb_deploy'
2
+
3
+ namespace :heroku do
4
+ namespace :deploy do
5
+ task qa: :environment do
6
+ BbDeploy::Deployer.new('qa').deploy!
7
+ end
8
+
9
+ task staging: :environment do
10
+ BbDeploy::Deployer.new('staging').deploy!
11
+ end
12
+
13
+ task production: :environment do
14
+ BbDeploy::Deployer.new('production').deploy!
15
+ end
16
+ end
17
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bb_deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.7
4
+ version: 0.0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter van Wesep
@@ -87,6 +87,7 @@ extensions: []
87
87
  extra_rdoc_files: []
88
88
  files:
89
89
  - lib/bb_deploy.rb
90
+ - lib/bb_deploy/ConfigTODO
90
91
  - lib/bb_deploy/config.rb
91
92
  - lib/bb_deploy/deployer.rb
92
93
  - lib/bb_deploy/git.rb
@@ -94,6 +95,7 @@ files:
94
95
  - lib/bb_deploy/logger.rb
95
96
  - lib/bb_deploy/railtie.rb
96
97
  - lib/bb_deploy/task.rb
98
+ - lib/tasks/deploy.rake
97
99
  homepage:
98
100
  licenses:
99
101
  - MIT