elastic-beanstalk 1.0.0 → 1.0.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 +8 -8
- data/LICENSE.txt +1 -1
- data/README.md +6 -2
- data/elastic-beanstalk.gemspec +1 -1
- data/lib/elastic/beanstalk/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NjU1YWI4M2E0MDRhNGVkNTE5OGZlYTZmOWU0YTE1NmNlZGFlODRlYg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NWFhYzg0MjE3MjI0OGU3MzVmODRjMDEyMGJhYTBmNjExM2YwN2VkYQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MTY0YTU4Yjc0NjY2MDEyNzhiMmZhMDg0YmM0ODQ3YzhlZDY2ZmMzNGU1MGIx
|
|
10
|
+
M2YxN2UyNzIxYmU4OGIxZGRmOTE5ZDJkOWU4YWNiMGVjYTRiMTk2YjQ4NGVj
|
|
11
|
+
ZjZiM2JkZTZhZTMzNTBlYTYxYTY3NDI3MzA1YzllOTExNDBiYjU=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NGI2ZWQ0Y2U0MDhiMjI3MzJiNzY0MDA3YmZmN2U3NjMxYzZhOWVmZTIxNzMw
|
|
14
|
+
NDIyMWYwYjY3Y2M0N2QyZWMyZTc4ZGMwYjUyNjVlZDFmMDE3ODdjMmNiNDIx
|
|
15
|
+
Nzc5MTY5NzAxZDY0YzkzMDU5M2FmYzA1MmZlZGQwNTBiZjk4YWU=
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -37,8 +37,8 @@ Since [eb_deployer](https://github.com/ThoughtWorksStudios/eb_deployer) is doing
|
|
|
37
37
|
|
|
38
38
|
Given an application named 'acme':
|
|
39
39
|
|
|
40
|
-
### Step 1: Add
|
|
41
|
-
This should contain the access and secret keys generated from the selected IAM user. This is the only file that will need to reside outside the repository.
|
|
40
|
+
### Step 1: Add ~/.aws/acme.yml
|
|
41
|
+
This should contain the access and secret keys generated from the selected IAM user. This is the only file that will need to reside outside the repository. Note that this location is configurable in the `config/eb.yml` file.
|
|
42
42
|
|
|
43
43
|
access_key_id: XXXXXX
|
|
44
44
|
secret_access_key: XXXXXX
|
|
@@ -234,3 +234,7 @@ Please contribute! While this is working great, a greater scope of functionality
|
|
|
234
234
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
235
235
|
4. Push to the branch (`git push origin my-new-feature`)
|
|
236
236
|
5. Create new Pull Request
|
|
237
|
+
|
|
238
|
+
## Copyright
|
|
239
|
+
|
|
240
|
+
Copyright (c) 2014 AlienFast. See LICENSE.txt for further details.
|
data/elastic-beanstalk.gemspec
CHANGED
|
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
|
|
|
31
31
|
|
|
32
32
|
# runtime
|
|
33
33
|
spec.add_runtime_dependency 'railties', '>= 3.2'
|
|
34
|
-
spec.add_runtime_dependency 'eb_deployer'
|
|
34
|
+
spec.add_runtime_dependency 'eb_deployer', '>= 0.4.4'
|
|
35
35
|
spec.add_runtime_dependency 'awesome_print'
|
|
36
36
|
spec.add_runtime_dependency 'time_diff'
|
|
37
37
|
spec.add_runtime_dependency 'rubyzip'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: elastic-beanstalk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kevin Ross
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-05-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -72,14 +72,14 @@ dependencies:
|
|
|
72
72
|
requirements:
|
|
73
73
|
- - ! '>='
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version:
|
|
75
|
+
version: 0.4.4
|
|
76
76
|
type: :runtime
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - ! '>='
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version:
|
|
82
|
+
version: 0.4.4
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
84
|
name: awesome_print
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|