elastic_beans 1.2.1 → 1.2.2
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
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 64e3621fdf6c7c2cdb2b652873ac46887a28052b446481f6e1d51e23627816c8
|
|
4
|
+
data.tar.gz: 19d7eb7fffe39931c0f173bd4dc79df61268b48cade5da2689810d9df7f2f2c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 05a2d1c575355af5a57e444f90a1ea759460ec04394300664008055f72e32ffab049915c4d9835f5c33305e88f4f3746098cb83e29eda172ebe59aecaf0befd5
|
|
7
|
+
data.tar.gz: 207147dfc7acf66f53b54e311200798a10a57810e5874a78fbfdca7d19e6bf0df56e74b91125d327b6f5b9f59160a0962dd0028664ba0f662bf2eaab4b520fd9
|
|
@@ -2,8 +2,13 @@ require "json"
|
|
|
2
2
|
require "timeout"
|
|
3
3
|
require "aws-sdk"
|
|
4
4
|
require "elastic_beans/aws/cloudformation_stack"
|
|
5
|
+
require "elastic_beans/application_version"
|
|
6
|
+
require "elastic_beans/configuration_template"
|
|
7
|
+
require "elastic_beans/env_vars"
|
|
8
|
+
require "elastic_beans/environment"
|
|
5
9
|
require "elastic_beans/error"
|
|
6
10
|
require "elastic_beans/error/access_denied"
|
|
11
|
+
require "elastic_beans/exec/command"
|
|
7
12
|
|
|
8
13
|
module ElasticBeans
|
|
9
14
|
# An Elastic Beanstalk application which should exist.
|
|
@@ -3,6 +3,7 @@ require "elastic_beans/configuration_template/exec"
|
|
|
3
3
|
require "elastic_beans/configuration_template/scheduler"
|
|
4
4
|
require "elastic_beans/configuration_template/webserver"
|
|
5
5
|
require "elastic_beans/configuration_template/worker"
|
|
6
|
+
require "elastic_beans/error"
|
|
6
7
|
|
|
7
8
|
module ElasticBeans
|
|
8
9
|
# An Elastic Beanstalk saved configuration (also known as a configuration template) which may or may not exist.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: elastic_beans
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adam Stegman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-05-
|
|
11
|
+
date: 2018-05-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk
|
|
@@ -256,7 +256,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
256
256
|
version: '0'
|
|
257
257
|
requirements: []
|
|
258
258
|
rubyforge_project:
|
|
259
|
-
rubygems_version: 2.6
|
|
259
|
+
rubygems_version: 2.7.6
|
|
260
260
|
signing_key:
|
|
261
261
|
specification_version: 4
|
|
262
262
|
summary: Elastic Beanstalk environment orchestration for a Rails app
|