hashipack 0.1.6 → 0.1.7

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
  SHA256:
3
- metadata.gz: 2423fd4fb8a820ae618c61f0b031cacf63143f5626bc6ad9a7e7db3cd9c3f8e4
4
- data.tar.gz: e8e9a8c627d33522cf40efda1b03113cfacde5676386944c702d0647e8f9b7dd
3
+ metadata.gz: 87fd41d558d6ee4d58c99aa4e2a33eeffc370a03aef72e39ff573d746378b5e2
4
+ data.tar.gz: b0fd96379a70bd93ee8fbf8cde578aa2aa3d9dac4d942edda84a40e18220d7ba
5
5
  SHA512:
6
- metadata.gz: 8c76888f12547f25db4f900a3cfbbafe904c8335897bece060d22cb32f9a30b3bec8546315d590b2329096d344db810cc462cd031f0bcd50d965d5b430b73956
7
- data.tar.gz: b8aed88a7362c77203826b202565f29f9b4034413fa7420fb2d60ab8855ca34a6f084ab3baf91290663d74f57e30eeea8ca18e4f92c0d5cb048bde12181a8939
6
+ metadata.gz: d076feaf4992bf9bdd0f98c5a4e531e1c2c7b71ba658557c14fa0f831340fd18889466e8bbe2cc156a0cb63d4c729304f81987f4d24490cdb1719d4e340aac9b
7
+ data.tar.gz: b35accd2f1f4d7b4009c953c0995882a59e3ac82361d196863a7c0d456a0a7c108c7187c45ff3fa85437042924c88c872c8ecbe78054a67cc73a16482686f2b9
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- hashipack (0.1.6)
4
+ hashipack (0.1.7)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -5,8 +5,8 @@ module Hashipack
5
5
  class Client
6
6
  def build(path, on_output: lambda {}, on_progress: lambda {}, estimated_duration: 300, debug: false)
7
7
  directory, filename = File.split(path)
8
- debug_suffix = debug ? ' -debug' : ''
9
- command = "packer -machine-readable build #{filename}#{debug_suffix}"
8
+ debug_option = debug ? '-debug' : ''
9
+ command = "packer -machine-readable build #{debug_option} #{filename}"
10
10
 
11
11
  initial_timestamp = 99999999999
12
12
  last_timestamp = 0
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Hashipack
4
- VERSION = "0.1.6"
4
+ VERSION = "0.1.7"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hashipack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lukas_Skywalker