lono 3.4.0 → 3.4.1
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/lono/settings.rb +1 -1
- data/lib/lono/template/helpers.rb +1 -1
- data/lib/lono/template/upload.rb +2 -2
- data/lib/lono/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f97451bcb37fa800508e0130643bf8c4a200c4aa317bde4ea2a6f1b431b189d2
|
4
|
+
data.tar.gz: b157b16d9fef5381e4418ab5d80766d38338ccde2138461b0e9ec23d9a1870d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 219ff3616088cbc83f8d44f3b69c614fcb9419c5347d18715c890d5e6e369de85b5058757ba613287a9fd15ab8d73c8d26514e2d21a58d4e5482bcf25c6eb539
|
7
|
+
data.tar.gz: fb44035e6c219ce539ca23308491bf7097289c320b17eaadb8ef0cb068a7cb6ab228a3864941fb165d7f939484bebbfaddae3499ba8756c75665ce8f819cd53f
|
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
|
+
## [3.4.1]
|
7
|
+
- docs for lono settings
|
8
|
+
|
6
9
|
## [3.4.0]
|
7
10
|
- fix lono project config settings
|
8
11
|
- upgrade to circleci 2.0
|
data/lib/lono/settings.rb
CHANGED
@@ -5,7 +5,7 @@ class Lono::Settings
|
|
5
5
|
|
6
6
|
# The options from the files get merged with the following precedence:
|
7
7
|
#
|
8
|
-
# current folder - The current folder’s
|
8
|
+
# current folder - The current folder’s config/settings.yml values take the highest precedence.
|
9
9
|
# user - The user’s ~/.lono/settings.yml values take the second highest precedence.
|
10
10
|
# default - The default settings bundled with the tool takes the lowest precedence.
|
11
11
|
#
|
@@ -10,7 +10,7 @@ module Lono::Template::Helpers
|
|
10
10
|
upload = Lono::Template::Upload.new(@_options)
|
11
11
|
upload.s3_https_url(template_path)
|
12
12
|
else
|
13
|
-
message = "template_s3_path helper called but s3.path not configured in
|
13
|
+
message = "template_s3_path helper called but s3.path not configured in settings.yml"
|
14
14
|
puts "WARN: #{message}".colorize(:yellow)
|
15
15
|
message
|
16
16
|
end
|
data/lib/lono/template/upload.rb
CHANGED
@@ -119,8 +119,8 @@ class Lono::Template::Upload
|
|
119
119
|
if settings.s3_path
|
120
120
|
@s3_full_path = settings.s3_path
|
121
121
|
else
|
122
|
-
say "Unable to upload templates to s3 because you have not configured the s3.path option in
|
123
|
-
say "Please configure
|
122
|
+
say "Unable to upload templates to s3 because you have not configured the s3.path option in lono settings.yml.".colorize(:red)
|
123
|
+
say "Please configure settings.yml with s3.path. Refer to http://lono.cloud/docs/settings/ for more help.".colorize(:red)
|
124
124
|
exit 1
|
125
125
|
end
|
126
126
|
end
|
data/lib/lono/version.rb
CHANGED