lono 7.5.0 → 7.5.1

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
  SHA256:
3
- metadata.gz: cd5679ca210ff7b08d8a27be6b609f6f83d976be17b194a03bf2ab16213c77c1
4
- data.tar.gz: 8398fe7da7c8f6c238c33df8e4d1490ab2de8668ce4b15c9de1337452d96135e
3
+ metadata.gz: a9747560fd12e2616a4e4087d00767cdf35ab3af81e5749a405f656277236435
4
+ data.tar.gz: 58ff9d94ad6c554e74f6c1f10cee69ad47084ab0d3353e7ad4f8fd7f0a79ea73
5
5
  SHA512:
6
- metadata.gz: 52ebc82213267702a032cd64717746a5fb9c534eeb183d084300691028ed640e1237b616ede58cadb31b26e259f2ed89d664a1e0cf699a8cd1d11d83967b842d
7
- data.tar.gz: 15751366609d0c134374c3db39b085aca1d0a03f1e2c0d09f3778bf0729c4cd758c01d4bb5762b44362cb73fb09c757fac7fd847cff8697236958b231d6ce49a
6
+ metadata.gz: 0eb34584e3bd9836e31e45e2328c41d77b3a06ad09cf5454001bb6f22610c97772d5588839297b6115a492d09bb2394cc0fe904e3bc24ff4b4cdcf4467cd9003
7
+ data.tar.gz: ee471c17de149878638b407316154a773941ee7642a96118cf03c7c9daf3d56e18fdf9a0cf8af3207be7da05864d803813076917ff0c0654d31701391b144ff0
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
+ ## [7.5.1] - 2021-05-03
7
+ - remove registration check
8
+ - fix brew install graphviz message
9
+
6
10
  ## [7.5.0]
7
11
  - #71 `set_instances deploy` command in favor of `set_instances sync`
8
12
 
data/README.md CHANGED
@@ -10,6 +10,8 @@
10
10
 
11
11
  [![BoltOps Badge](https://img.boltops.com/boltops/badges/boltops-badge.png)](https://www.boltops.com)
12
12
 
13
+ Please **watch/star** this repo to help grow and support the project.
14
+
13
15
  Lono is a CloudFormation framework. It builds, manages, and deploys CloudFormation templates.
14
16
 
15
17
  ## Lono Features
data/lib/lono/cfn/base.rb CHANGED
@@ -39,7 +39,6 @@ class Lono::Cfn
39
39
 
40
40
  # exit code for cfn.rb cli, so there's less duplication
41
41
  exit 1 unless success
42
- Lono::Registration.check
43
42
  success
44
43
  end
45
44
 
data/lib/lono/cli.rb CHANGED
@@ -13,7 +13,6 @@ module Lono
13
13
  long_desc Help.text(:blueprints)
14
14
  def blueprints
15
15
  Finder::Blueprint.list
16
- Lono::Registration.check
17
16
  end
18
17
 
19
18
  desc "configsets [BLUEPRINT]", "Lists configsets"
@@ -102,7 +102,7 @@ module Lono::Inspector
102
102
  puts "It appears that the Graphviz is not installed. Please install it to generate the graph."
103
103
  if RUBY_PLATFORM =~ /darwin/
104
104
  puts "You can install Graphviz with homebrew:"
105
- puts " brew install brew install graphviz"
105
+ puts " brew install graphviz"
106
106
  end
107
107
  exit 1
108
108
  end
data/lib/lono/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Lono
2
- VERSION = "7.5.0"
2
+ VERSION = "7.5.1"
3
3
  end
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: 7.5.0
4
+ version: 7.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-04-26 00:00:00.000000000 Z
11
+ date: 2021-05-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -810,7 +810,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
810
810
  - !ruby/object:Gem::Version
811
811
  version: '0'
812
812
  requirements: []
813
- rubygems_version: 3.1.2
813
+ rubygems_version: 3.2.5
814
814
  signing_key:
815
815
  specification_version: 4
816
816
  summary: The CloudFormation Framework