lono 6.1.10 → 6.1.11
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/lono/cfn/base.rb +2 -2
- data/lib/lono/config_location.rb +1 -1
- data/lib/lono/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c7b8aac5691cff8ed8b88b54966069a649acebb0a9560c1ca0dff78319c2ab50
|
|
4
|
+
data.tar.gz: fb47bc4be6366f4f88edeb21ede8cfdf58de7f88795cb46b3246e6a6935caf08
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9144be84cdd745dbbcb5dff0882d2ac6e13edb8f979c91264406f1c47c2d3267481f448a0c2c4f508503e04bddd97072dbd9b06fa119d7f8e77cf8ed2ea3f74
|
|
7
|
+
data.tar.gz: 355428a2feabeefab9af469bf52e589a3870e2d08bcf1b6d4ae418e8fef8970deff523d6ba2636bf34ddef1b3df843d4782cb8cecc640c8d880411da4fc11f78
|
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
|
+
## [6.1.11]
|
|
7
|
+
- #35 fix app files variables erb lookup scope
|
|
8
|
+
|
|
6
9
|
## [6.1.10]
|
|
7
10
|
- #32 use lono dsl scope for the app files erb processing
|
|
8
11
|
- #33 fix squeezer for Array. squeeze hashes nested in arrays too
|
data/lib/lono/cfn/base.rb
CHANGED
|
@@ -157,11 +157,11 @@ class Lono::Cfn
|
|
|
157
157
|
end
|
|
158
158
|
|
|
159
159
|
def build_scripts
|
|
160
|
-
Lono::Script::Build.new(@blueprint, @options).run
|
|
160
|
+
Lono::Script::Build.new(@blueprint, @options.merge(stack: @stack_name)).run
|
|
161
161
|
end
|
|
162
162
|
|
|
163
163
|
def build_files
|
|
164
|
-
Lono::AppFile::Build.new(@blueprint, @options).run
|
|
164
|
+
Lono::AppFile::Build.new(@blueprint, @options.merge(stack: @stack_name)).run
|
|
165
165
|
end
|
|
166
166
|
|
|
167
167
|
def generate_templates
|
data/lib/lono/config_location.rb
CHANGED
data/lib/lono/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lono
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.1.
|
|
4
|
+
version: 6.1.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-12-
|
|
11
|
+
date: 2019-12-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|