jack-eb 1.4.0 → 1.4.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/CHANGELOG.md +3 -0
- data/lib/jack/create.rb +1 -2
- data/lib/jack/deploy.rb +1 -0
- data/lib/jack/util.rb +7 -0
- data/lib/jack/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 30600f76b7a14faa4622dd2812108d23d809a8b8
|
4
|
+
data.tar.gz: 3bb57c66c90a649de087076cc91caf1cf1788876
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8953ec29a971582968e1a22aee13efb8de27cd702bf47a517353acbaf2d5568b8cdfe478f5a95fdb754e695a404e71a6d560fb0b40afcf487221c50fb0e276e
|
7
|
+
data.tar.gz: 2756afbf5a86826147f66f89c03dda07318d351e16fe6c123daeea3e384b0f51de788003d8f0c9cff28ed038dd5ba4f5db305fcbddba1ee998d556d551fb37c1
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,9 @@
|
|
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.1]
|
7
|
+
* ensure jack deploy works on freshly clone project with existing app
|
8
|
+
|
6
9
|
## [1.4.0]
|
7
10
|
* fix jack deploy, remove debugging
|
8
11
|
* fix embedded_eb lookup
|
data/lib/jack/create.rb
CHANGED
data/lib/jack/deploy.rb
CHANGED
data/lib/jack/util.rb
CHANGED
@@ -47,6 +47,13 @@ module Jack::Util
|
|
47
47
|
FileUtils.mkdir_p(folder) unless File.exist?(folder)
|
48
48
|
end
|
49
49
|
|
50
|
+
# Sets up common prerequisites like setting up the .elasticbeanstsalk/ files
|
51
|
+
# for create or deploy to work
|
52
|
+
def prerequisites
|
53
|
+
check_aws_setup
|
54
|
+
Jack::EbConfig::Create.new(@options).sync unless @options[:noop]
|
55
|
+
end
|
56
|
+
|
50
57
|
# Checks main if the ~/.aws/config has been set up properly. If it has not
|
51
58
|
# print a message to the user and exit the program.
|
52
59
|
def check_aws_setup
|
data/lib/jack/version.rb
CHANGED