opsworks-cli 0.3.0 → 0.3.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/opsworks/cli/subcommands/apps.rb +1 -1
- data/lib/opsworks/cli/subcommands/iam.rb +0 -1
- data/lib/opsworks/cli/subcommands/recipes.rb +1 -1
- data/lib/opsworks/cli/subcommands/update.rb +1 -1
- data/lib/opsworks/cli/version.rb +1 -1
- data/lib/opsworks/deployment.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24eda80145b5d2de20212e40f355dbe721ef7500
|
|
4
|
+
data.tar.gz: 3c31ff27cbc3c162a9fe6d9f6d40e43a81f05757
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf216b8aebe92d9e3060f4475baff5bd26dbe4baa18517be1baa4e675a82802b90b0df0979e76d4450165d3c6f29a2083da286797e01e893260a565e8fbdbeca
|
|
7
|
+
data.tar.gz: 087856b4b7c318f259fd995f86f93218f6243b8f211a7c9dea5393adc01464857d9a43c5601476d8adb459628d367a710370e2aeefc3c4af787ad2fdbfdeef4b
|
|
@@ -11,7 +11,7 @@ module OpsWorks
|
|
|
11
11
|
thor.class_eval do
|
|
12
12
|
desc 'apps:deploy APP [--stack STACK]', 'Deploy an OpsWorks app'
|
|
13
13
|
option :stack, type: :array
|
|
14
|
-
option :timeout, type: :numeric
|
|
14
|
+
option :timeout, type: :numeric, default: 300
|
|
15
15
|
define_method 'apps:deploy' do |name|
|
|
16
16
|
fetch_keychain_credentials unless env_credentials?
|
|
17
17
|
stacks = parse_stacks(options.merge(active: true))
|
|
@@ -10,7 +10,7 @@ module OpsWorks
|
|
|
10
10
|
thor.class_eval do
|
|
11
11
|
desc 'recipes:run RECIPE [--stack STACK]', 'Execute a Chef recipe'
|
|
12
12
|
option :stack, type: :array
|
|
13
|
-
option :timeout, type: :numeric
|
|
13
|
+
option :timeout, type: :numeric, default: 300
|
|
14
14
|
define_method 'recipes:run' do |recipe|
|
|
15
15
|
fetch_keychain_credentials unless env_credentials?
|
|
16
16
|
stacks = parse_stacks(options.merge(active: true))
|
|
@@ -14,7 +14,7 @@ module OpsWorks
|
|
|
14
14
|
|
|
15
15
|
desc 'update [--stack STACK]', 'Update OpsWorks custom cookbooks'
|
|
16
16
|
option :stack, type: :array
|
|
17
|
-
option :timeout, type: :numeric
|
|
17
|
+
option :timeout, type: :numeric, default: 300
|
|
18
18
|
def update
|
|
19
19
|
fetch_keychain_credentials unless env_credentials?
|
|
20
20
|
stacks = parse_stacks(options.merge(active: true))
|
data/lib/opsworks/cli/version.rb
CHANGED
data/lib/opsworks/deployment.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: opsworks-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Frank Macreery
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-12-
|
|
11
|
+
date: 2014-12-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|