f2y_aws_tool 0.2.0 → 0.2.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/bin/f2y-aws-tool +1 -3
- data/f2y_aws_tool.gemspec +1 -1
- data/lib/f2y_aws_tool/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cfd05dc54295d62542683daba0a3d1237e1d4e3f
|
4
|
+
data.tar.gz: 1be3e029861bf3de91e1e3f9a8393d72d170fc0b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27e44d11e1c2340679ad71491b0bdc5cc643163577677a644379125f1d66f35e19b6970b7c4b42d8b122a8e5a97bb2db03662bb4f960df72c7d4f8753f3b3352
|
7
|
+
data.tar.gz: 5131fe6fbda2b5367aa0c7985bf4dda8209bb187f5f6cd5dc879077c644946c843f37e1ce9d24a1280b74c3d43eb8a2776c704e239c6cc7bcce23c9fa81520da
|
data/bin/f2y-aws-tool
CHANGED
@@ -4,11 +4,9 @@ require_relative '../lib/f2y_aws_tool'
|
|
4
4
|
require 'thor'
|
5
5
|
|
6
6
|
class F2yAwsToolCli < Thor
|
7
|
-
method_option :target, desc: "Opsworks Target", type: :hash, banner: "stack_id:STACK app_id:APP_ID"
|
8
|
-
|
7
|
+
method_option :target, desc: "Opsworks Target", type: :hash, banner: "stack_id:STACK app_id:APP_ID region:REGION or file:config.yml"
|
9
8
|
method_option :access_key_id, desc: "AWS Access Key Id", type: :string, default: ENV['AWS_ACCESS_KEY_ID']
|
10
9
|
method_option :secret_access_key, desc: "AWS Secret Access Key", type: :string, default: ENV['AWS_SECRET_ACCESS_KEY']
|
11
|
-
method_option :region, desc: "AWS Opsworks Region", required: false, type: :string
|
12
10
|
|
13
11
|
method_option :wait, desc: "Wait until deploy is completed", type: :boolean, default: true
|
14
12
|
method_option :migrate, desc: "Migrate database", type: :boolean, default: true
|
data/f2y_aws_tool.gemspec
CHANGED
@@ -40,6 +40,6 @@ Gem::Specification.new do |spec|
|
|
40
40
|
spec.add_runtime_dependency "thor", "0.19.4"
|
41
41
|
spec.add_runtime_dependency "aws-sdk", "2.7.7"
|
42
42
|
spec.executables << "f2y-aws-tool"
|
43
|
-
spec.add_runtime_dependency "activesupport", "
|
43
|
+
spec.add_runtime_dependency "activesupport", "~> 4.2.7"
|
44
44
|
|
45
45
|
end
|
data/lib/f2y_aws_tool/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: f2y_aws_tool
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- nakedmoon
|
@@ -112,16 +112,16 @@ dependencies:
|
|
112
112
|
name: activesupport
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
|
-
- -
|
115
|
+
- - "~>"
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version:
|
117
|
+
version: 4.2.7
|
118
118
|
type: :runtime
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
|
-
- -
|
122
|
+
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version:
|
124
|
+
version: 4.2.7
|
125
125
|
description: Fit2You Amazon Web Services Tool.
|
126
126
|
email:
|
127
127
|
- tore.andrea@gmail.com
|