lono-params 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 318c489d045f09adc0345972f4a9e5263e9c5b9b
4
- data.tar.gz: e6d1a961b79025103a5d451b7b36d0c02a093cdf
3
+ metadata.gz: e1e0727c88ca2ebbd61dbf290f4a3c07520fcca2
4
+ data.tar.gz: cee8d447168281c64f5f3e987a47b87044fb3dd6
5
5
  SHA512:
6
- metadata.gz: ae6704676a16eabf71354702d8769c738e9a204ccbba33678a017fe7311afff9b47ad87a913f6b743e840080bbd5d7088f05abebc5798dea938daa90579fa8f0
7
- data.tar.gz: 5c944fe65681c6b47325cd7a4fa86b86dfecda0bc027e42aec98a3a9afd8a9c04e203cd36a7f352d10d0be1d73c5b0a9eb6e67e34bbe0f27d5ac4818f073efca
6
+ metadata.gz: 9be26951066a916d76943968517a8b65ffa6a949fc31112a9cbea9d13258c427e768baf61300f5e0365c4db449bdc8bffea3a4bc2a372541c4351aaf1a35a077
7
+ data.tar.gz: 1f416641e8f1c77c6bb6096820436c2763b7de53dc5b31f032eb660ee758dbe70ee6d7aa0f8d0457d77f70b6836887b5dc6ce1d6a46f4db20698e69d34c2fde3
data/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
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
+ ## [0.0.6]
7
+
8
+ - add internal mute option
9
+
6
10
  ## [0.0.5] do not generate param if the value is not set
7
11
 
8
12
  - do not generate param if the value is not set
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lono-params (0.0.5)
4
+ lono-params (0.0.6)
5
5
  colorize
6
6
  hashie
7
7
  plissken
@@ -54,7 +54,7 @@ GEM
54
54
  ruby_dep (~> 1.2)
55
55
  lumberjack (1.0.10)
56
56
  method_source (0.8.2)
57
- minitest (5.10.1)
57
+ minitest (5.10.2)
58
58
  nenv (0.3.0)
59
59
  notiffany (0.1.1)
60
60
  nenv (~> 0.1)
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Lono Params
2
2
 
3
+ [![CircleCI](https://circleci.com/gh/tongueroo/lono-params.svg?style=svg)](https://circleci.com/gh/tongueroo/lono-params)
4
+
3
5
  Tool to generate a CloudFormation params json formatted file from a simple env file.
4
6
 
5
7
  Given:
@@ -9,7 +11,6 @@ Param1=1
9
11
  # comments are fine
10
12
  Param2=2 # comments can go after the line too
11
13
  Param3=use_previous_value # treated specially
12
- $
13
14
  ```
14
15
 
15
16
  This is produced:
@@ -20,7 +20,7 @@ module LonoParams
20
20
  data = convert_to_cfn_format(contents)
21
21
  json = JSON.pretty_generate(data)
22
22
  write_output(json)
23
- puts "Params file generated for #{@name} at #{output_path}"
23
+ puts "Params file generated for #{@name} at #{output_path}" unless @options[:mute]
24
24
  else
25
25
  puts "#{@source_path} could not be found? Are you sure it exist?"
26
26
  exit 1
@@ -1,3 +1,3 @@
1
1
  module LonoParams
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lono-params
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
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-04-25 00:00:00.000000000 Z
11
+ date: 2017-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor