jack-eb 1.4.1 → 1.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/jack/default/settings.yml +1 -1
- data/lib/jack/settings.rb +7 -0
- data/lib/jack/util.rb +1 -1
- data/lib/jack/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0027057222793de61bc3153c0e3e6ab492029741'
|
4
|
+
data.tar.gz: 9818454beb49d4b25d7a2842e314c7f39098a467
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb60edce1621cbbba85bc577433061ac110c1aa649a00fe0fa99a3b41f844c5f803cda4b6a9e5cfd22df1d2acd6ec3d0cff17a376222965e83f6c0b86807faba
|
7
|
+
data.tar.gz: b126a9c62f880ae43a5b4b9568232d5991988e1a59b29282c81cdd032be0cdd7729c13a23fff1b4a153084ee40ed130934796b16174fd3ab499495648a1f1b4e
|
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.2]
|
7
|
+
* update default platform
|
8
|
+
|
6
9
|
## [1.4.1]
|
7
10
|
* ensure jack deploy works on freshly clone project with existing app
|
8
11
|
|
data/lib/jack/settings.rb
CHANGED
@@ -4,6 +4,13 @@ module Jack
|
|
4
4
|
@root = root || '.'
|
5
5
|
end
|
6
6
|
|
7
|
+
# The options from the files get merged with the following precedence:
|
8
|
+
#
|
9
|
+
# current folder - The current folder’s jack/settings.yml values take the highest precedence.
|
10
|
+
# user - The user’s ~/.jack/settings.yml values take the second highest precedence.
|
11
|
+
# default - The default settings bundled with the tool takes the lowest precedence.
|
12
|
+
#
|
13
|
+
# More info: http://jack-eb.com/docs/settings/
|
7
14
|
def data
|
8
15
|
return @settings_yaml if @settings_yaml
|
9
16
|
|
data/lib/jack/util.rb
CHANGED
@@ -129,7 +129,7 @@ module Jack::Util
|
|
129
129
|
# 3. /opt/bolts/embedded/bin/eb - This comes packaged with the the bolts toolbelt.
|
130
130
|
# https://boltops.com/toolbelt
|
131
131
|
#
|
132
|
-
# If an eb installation is not
|
132
|
+
# If an eb installation is not detected it'll display a message and exit the program.
|
133
133
|
def eb_bin
|
134
134
|
return @@eb_bin if @@eb_bin
|
135
135
|
|
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tung Nguyen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|