lono 1.1.2 → 1.1.3
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/dsl.rb +1 -1
- data/lib/lono/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: 9f79d721191571eaa17df7a5e037281b4631ca0e
|
4
|
+
data.tar.gz: f38b1dbae7db19838efae137471d0685710b43d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d3eeb1096333c819438a73d03c81de71fcc367e5ab1ba34393fae138b39b99e8a5f7bd9cec1d4fcdcbd38af62eca13d91d6fbce93ab41b592f95da78f93e2f7
|
7
|
+
data.tar.gz: 250cabca938f4f5eb8b48f15843ac6cd70387ed7e322e5ff40cd00918f22da36b5de247b73ba55138bff77ca8eb98aed6ebccc1b167a298ebe471d6c18ce9568
|
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.1.3]
|
7
|
+
- make display output path prettier
|
8
|
+
|
6
9
|
## [1.1.2]
|
7
10
|
- erb error fix context off by 1
|
8
11
|
|
data/lib/lono/dsl.rb
CHANGED
@@ -68,7 +68,7 @@ module Lono
|
|
68
68
|
FileUtils.mkdir(output_path) unless File.exist?(output_path)
|
69
69
|
puts "Generating CloudFormation templates:" unless @options[:quiet]
|
70
70
|
@results.each do |name,text|
|
71
|
-
path = "#{output_path}/#{name}"
|
71
|
+
path = "#{output_path}/#{name}".sub(/^\.\//,'')
|
72
72
|
puts " #{path}" unless @options[:quiet]
|
73
73
|
ensure_parent_dir(path)
|
74
74
|
validate(text, path)
|
data/lib/lono/version.rb
CHANGED