BibOpsworks 0.0.9 → 0.0.9.1
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 +4 -4
- data/lib/bib/opsworks.rb +2 -0
- data/lib/bib/opsworks/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0f8fcefbe64119ea8ff05c10ef4969d75cd67c72
|
|
4
|
+
data.tar.gz: b328e472f877330a5a728353e97bb8bd79b6ad81
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73349a33ff6ae1026f198456e252b769c4260e2d717216dbccf02984bcf163e64039c138c3ab72538749feedc3a448d567be5acf015815b60faeadf98ac966e3
|
|
7
|
+
data.tar.gz: 9dfc2d6d1c08ce7523d6d6894dfd4b26e34d5dbede263efb187acc15880caf6bc5d7d6a667dc8251e50dcd11381c2ca0691bab9c3af51798772bf92bc4540d3c
|
data/lib/bib/opsworks.rb
CHANGED
|
@@ -5,11 +5,13 @@ require 'bib/opsworks/version'
|
|
|
5
5
|
class BibOpsworks
|
|
6
6
|
|
|
7
7
|
def copy_composer(release_path, deploy_user)
|
|
8
|
+
run "echo My very last attempt to get sth in the logs"
|
|
8
9
|
composer = Bib::Opsworks::Composer.new
|
|
9
10
|
composer.copy_vendor(release_path, deploy_user)
|
|
10
11
|
end
|
|
11
12
|
|
|
12
13
|
def newrelic_publish_deployment(app_name, deploy_data, newrelic_api_key)
|
|
14
|
+
run "echo publish deployment"
|
|
13
15
|
newrelic = Bib::Opsworks::Newrelic.new
|
|
14
16
|
newrelic.publish_deployment(app_name, deploy_data, newrelic_api_key)
|
|
15
17
|
end
|
data/lib/bib/opsworks/version.rb
CHANGED