terra_boi 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 +4 -4
- data/README.md +5 -1
- data/lib/terra_boi/version.rb +1 -1
- metadata +10 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e8f5413354a66c625ee26c8778773011b1119e1ca8c7907d5c35d3848f376c9a
|
|
4
|
+
data.tar.gz: 73ffe12bcc566b1ba30077ae5cc228edc03a922d235ab3c785bd9fa9c94d1d26
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e9aeb3d92446bcc652784cc3f4c0cad93bf42bc2e23564844b24eaff946c23815bee419f0cbe19a3d355c606129d4f40f2c116d89d1ec15ca931df09b4497e0d
|
|
7
|
+
data.tar.gz: 33d3a88b5034b673eeaca0a377fc19445188b2436f00f634cfa2c4780538c144c0e581294cbba8df0d2e34273649d8ab1aa75b7868c3d7e7fe9bd42db7b932be
|
data/README.md
CHANGED
|
@@ -2,7 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## Introduction
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Deploy your rails application to AWS with `rake deploy`.
|
|
6
|
+
|
|
7
|
+
This ruby / rails gem was created by [Charlie Reese](https://charliereese.ca/about) for [Clientelify](https://clientelify.com). It creates AWS infrastructure for your rails application and deploys it in 5 steps (3 installation steps and 2 rake tasks). Subsequent deployment is 1 step (`rake deploy`).
|
|
8
|
+
|
|
9
|
+
It is free to use.
|
|
6
10
|
|
|
7
11
|
Out of the box, terra_boi provides remote state locking, load-balancing, simple scaling, zero-downtime deployments, CloudWatch logging, DBs, and S3 buckets for multiple infrastructure environments: by default, terra_boi creates staging and prod environments for your web app.
|
|
8
12
|
|
data/lib/terra_boi/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: terra_boi
|
|
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
|
- Charlie Reese
|
|
@@ -44,13 +44,12 @@ dependencies:
|
|
|
44
44
|
- - ">="
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
46
|
version: '0'
|
|
47
|
-
description:
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
as code to immediately deploy staging / prod infrastructure).'
|
|
47
|
+
description: |-
|
|
48
|
+
Deploy your rails application to AWS with `rake deploy`.
|
|
49
|
+
|
|
50
|
+
This ruby / rails gem was created by Charlie Reese (charliereese.ca/about) for Clientelify. It creates AWS infrastructure for your rails application and deploys it in 5 steps (3 installation steps and 2 rake tasks). It is free to use.
|
|
51
|
+
|
|
52
|
+
Out of the box, terra_boi provides remote state locking, load-balancing, simple scaling, zero-downtime deployments, CloudWatch logging, DBs, and S3 buckets for multiple infrastructure environments: by default, terra_boi creates staging and prod environments for your web app.
|
|
54
53
|
email:
|
|
55
54
|
- j.charles.reese@gmail.com
|
|
56
55
|
executables: []
|
|
@@ -128,6 +127,7 @@ requirements: []
|
|
|
128
127
|
rubygems_version: 3.1.2
|
|
129
128
|
signing_key:
|
|
130
129
|
specification_version: 4
|
|
131
|
-
summary:
|
|
132
|
-
|
|
130
|
+
summary: Deploy your rails application to AWS with `rake deploy`. terra_boi generates
|
|
131
|
+
AWS infrastructure as code, provisions AWS infrastructure, and then deploys your
|
|
132
|
+
application to it using Terraform, rails generators, and rake tasks.
|
|
133
133
|
test_files: []
|