jack-eb 1.4.2 → 1.4.3
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 +5 -5
- data/CHANGELOG.md +4 -0
- data/docs/_docs/install.md +14 -14
- data/lib/jack/config/apply.rb +2 -2
- data/lib/jack/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: b1da14d6bae560995cd4f192e6d6789f4ba7283bbedb1ef95f04c9ea738dbbc9
|
|
4
|
+
data.tar.gz: e4208f66ba012a62a409146790c2861827060b5f500999873952fb6a1afc9e4b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aee297d29fe4a91e1de4e01ac68b2fff82794b1e8a1440423b25c477f95d70a9bfa37fd83c9e0a5826432da168114eb0ea731447c11e84d03783c57d5b0c20fa
|
|
7
|
+
data.tar.gz: c631c4efcca9a320598500eb8030c8bf66808b6c1b195db55d6af2f62df2c64107a8f1c838f8a44a35e6f3deb89cf98960c23e403c9bfcd9cf136d82aa76ab6d
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [1.4.3]
|
|
7
|
+
- Merge pull request #13 from maciejwalkowiak/patch-1: Fix hint message
|
|
8
|
+
- update install notes
|
|
9
|
+
|
|
6
10
|
## [1.4.2]
|
|
7
11
|
* update default platform
|
|
8
12
|
|
data/docs/_docs/install.md
CHANGED
|
@@ -2,27 +2,15 @@
|
|
|
2
2
|
title: Installation
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
-
### Install with Bolts Toolbelt
|
|
6
|
-
|
|
7
|
-
If you want to quickly install jack without having to worry about jack's dependency you can simply install the Bolts Toolbelt which has jack included.
|
|
8
|
-
|
|
9
|
-
```sh
|
|
10
|
-
brew cask install boltopslabs/software/bolts
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
The bolts installer will also automatically install the [aws cli](https://aws.amazon.com/documentation/cli/) and the [aws eb cli3](http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3.html) dependencies for you. You don't have to worry about it!
|
|
14
|
-
|
|
15
|
-
For more information about the Bolts Toolbelt or to get an installer for another operating system visit: [https://boltops.com/toolbelt](https://boltops.com/toolbelt)
|
|
16
|
-
|
|
17
5
|
### Install with RubyGems
|
|
18
6
|
|
|
19
|
-
|
|
7
|
+
You can install jack via RubyGems:
|
|
20
8
|
|
|
21
9
|
```sh
|
|
22
10
|
gem install jack-eb # the name is called jack-eb not jack
|
|
23
11
|
```
|
|
24
12
|
|
|
25
|
-
|
|
13
|
+
You can also add jack to your Gemfile in your project if you are working with a ruby project. It is not required for your project to be a ruby project to use jack.
|
|
26
14
|
|
|
27
15
|
{% highlight ruby %}
|
|
28
16
|
gem "jack-eb"
|
|
@@ -47,6 +35,18 @@ On other operating systems, follow Amazon Web Services' official installation gu
|
|
|
47
35
|
](http://docs.aws.amazon.com/cli/latest/userguide/installing.html)
|
|
48
36
|
* [Install the Elastic Beanstalk Command Line Interface (EB CLI)](http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-install.html)
|
|
49
37
|
|
|
38
|
+
### Install with Bolts Toolbelt
|
|
39
|
+
|
|
40
|
+
If you want to quickly install jack without having to worry about jack's dependency you can install the Bolts Toolbelt which has jack included.
|
|
41
|
+
|
|
42
|
+
```sh
|
|
43
|
+
brew cask install boltopslabs/software/bolts
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
The bolts installer will also automatically install the [aws cli](https://aws.amazon.com/documentation/cli/) and the [aws eb cli3](http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3.html) dependencies for you. You don't have to worry about it!
|
|
47
|
+
|
|
48
|
+
For more information about the Bolts Toolbelt or to get an installer for another operating system visit: [https://boltops.com/toolbelt](https://boltops.com/toolbelt)
|
|
49
|
+
|
|
50
50
|
|
|
51
51
|
<a id="prev" class="btn btn-basic" href="{% link docs.md %}">Back</a>
|
|
52
52
|
<a id="next" class="btn btn-primary" href="{% link _docs/structure.md %}">Next Step</a>
|
data/lib/jack/config/apply.rb
CHANGED
|
@@ -37,8 +37,8 @@ module Jack
|
|
|
37
37
|
If the difference is not what you expected, you should say no.
|
|
38
38
|
If you want to download the config from the environment and get #{@local_config_path}
|
|
39
39
|
back in sync, you can use this command:
|
|
40
|
-
$ jack
|
|
41
|
-
$ jack
|
|
40
|
+
$ jack get #{@env_name}
|
|
41
|
+
$ jack get -h # for more info
|
|
42
42
|
EOL
|
|
43
43
|
message
|
|
44
44
|
end
|
data/lib/jack/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jack-eb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-02-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -275,7 +275,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
275
275
|
version: '0'
|
|
276
276
|
requirements: []
|
|
277
277
|
rubyforge_project:
|
|
278
|
-
rubygems_version: 2.
|
|
278
|
+
rubygems_version: 2.7.3
|
|
279
279
|
signing_key:
|
|
280
280
|
specification_version: 4
|
|
281
281
|
summary: Wrapper tool to manage AWS Elastic Beanstalk environments
|