civo_cli 0.2.7 → 0.2.8

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: df73cb390c44a24588fbd169f8d5117123b05f730077dcd33b8c66503863b796
4
- data.tar.gz: 22cdc50995bb5afa99115c220acd7b03785083203bb847c3d77081bffa139529
3
+ metadata.gz: 23ca23d2c4921948d53b360cc5527c598d56414293613fa98122aa7ce4bc3a65
4
+ data.tar.gz: 2795f6c36eb98049373d73658d62cd4214fe9a4ec5baa534fca21a6304f4e638
5
5
  SHA512:
6
- metadata.gz: c348ecf64f2ee3e494a05dfc13cf08de0981289644fe89a149261120cf847d4ffc19d05db50401db7c1fcddb374b0f5d24ecb3b7697a2994eea3b0c780461fb0
7
- data.tar.gz: 542db45d0c4aa6049d2ce18c0168fd6dc6ed139c39940617e46a87deaae796b59f461e7a4cffe345a018a6c4a7979d8f9ff8bf7a494cfc3bd4dcb1498a3213e1
6
+ metadata.gz: 03ed21df08336252f21eb6da69b748967c93063df8528c3085847274f10be788b8a8ce626f209891f61aa862568553958a45d10b0c8e6fd134531edbed8a90ed
7
+ data.tar.gz: 628a587f8e9b822cfb7325f74e84c5e97e2437ac114ccc7d32384e7dca5c0932ae9fe4a3ba0e32b0039015304e5ff98b2332652d5ba7b4b3c243aedc247fcccb
data/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@ All notable changes to the Civo CLI will be documented in this file.
3
3
 
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
5
 
6
+ ## [0.2.8] - 2019-07-04
7
+ ### Fixed
8
+ - Forced rebuild of a blueprint didn't work
9
+
6
10
  ## [0.2.7] - 2019-07-04
7
11
  ### Fixed
8
12
  - Broken display after updating a blueprint if you use a name instead of an ID
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- civo_cli (0.2.7)
4
+ civo_cli (0.2.8)
5
5
  civo (>= 1.2.1)
6
6
  colorize
7
7
  json
data/lib/blueprint.rb CHANGED
@@ -49,7 +49,7 @@ module CivoCLI
49
49
  params[:dsl_content] = File.read(options["content-file"]) unless options["content-file"].nil?
50
50
  params[:template_id] = options["template-id"] unless options["template-id"].nil?
51
51
  params[:name] = options["name"] unless options["name"].nil?
52
- params[:force] = options["force"] unless options["force"].nil?
52
+ params[:force_rebuild] = options["force_rebuild"] unless options["force"].nil?
53
53
  Civo::Blueprint.update(params)
54
54
  blueprint = detect_blueprint(id)
55
55
  puts "Updated blueprint #{blueprint.name.colorize(:green)}"
@@ -1,3 +1,3 @@
1
1
  module CivoCLI
2
- VERSION = "0.2.7"
2
+ VERSION = "0.2.8"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: civo_cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Jeffries