lono 1.1.2 → 1.1.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7258f929ba23cffea30c8b5152b6b84f9e336db4
4
- data.tar.gz: 1270e0b6a842b14e240631cecfcc69ed078c80cf
3
+ metadata.gz: 9f79d721191571eaa17df7a5e037281b4631ca0e
4
+ data.tar.gz: f38b1dbae7db19838efae137471d0685710b43d8
5
5
  SHA512:
6
- metadata.gz: a4276cc3302a72d97cab08a931ed9b0ed585dca67461e920b58c08bfafb4b51138f4e84f7b4b39cf8154964cbffcac39fceaa7e7376ee6c9404436eefd5e39c1
7
- data.tar.gz: e22a1a9ae7cc7a9dc933c86c7c882924b60bc01effacf1034faae268f4e3236ba083dcaace35f107fe31dacfd8c0f79da15d368afec683cf6c156d1e24c865b6
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
@@ -1,3 +1,3 @@
1
1
  module Lono
2
- VERSION = "1.1.2"
2
+ VERSION = "1.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lono
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen