docker_core 0.0.24 → 0.0.25

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/docker_core.rb +3 -3
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1ffc945fc5a13ce10567d97bdfda12a6f040ca26fb922f2e48b2537ae358aba6
4
- data.tar.gz: 8814b75c42cf5e9793bbf4dcda92bde88d11e9bcf7cabd07cb14110d64bf6b7c
3
+ metadata.gz: a1aa25b8f032a45928140b7f29a149f6dfd9e5b658775027a68c0af0149c3a56
4
+ data.tar.gz: 0e7384b6cfacba90eaea5a6fcc1c95fad176a350b644030a82aecb01ca41710d
5
5
  SHA512:
6
- metadata.gz: bcce5fd8318a6d5e3795ac2da04f1f33a0dc84213ca919c47207834e9189ac489a28b291391ec2c9ed3817fa69cdd75107424fa90e7064f5243c92effc3db74a
7
- data.tar.gz: 941379233235b53f26b4b630166b64fcb2cce08b1db259e7ea6e4ba0a1d08ef4111c21899f167123c9a29919c7c5adb9ccd495e66d3b9f3c4e51884de748819d
6
+ metadata.gz: 1152e77399f32f7339b421a8f7a589d2c14545a40ca6670459a56a190e6e73749d01d055649dbc12c2c091aa67690101524ea9e890428a76f8a0217a35adc59b
7
+ data.tar.gz: 31bb09aa3c9c01d053764efd20264fc21453e6bb0a0f3c8d26ea71e7804f23f7b90bf190339a7dc91cb382a45cf151eca488bd2f37b595f080b2625e50b4eb66
data/lib/docker_core.rb CHANGED
@@ -136,7 +136,7 @@ module DockerCore
136
136
  # @param [Boolean] echo
137
137
  def self.capture(*arguments, sudo: SUDO, throw: false, wait: 0, strip: true, echo: false)
138
138
  begin
139
- command = self.command(*arguments, substitute: sudo)
139
+ command = self.command(*arguments, sudo: sudo)
140
140
 
141
141
  if echo
142
142
  Color.echo(": #{command}", Color::YELLOW)
@@ -158,7 +158,7 @@ module DockerCore
158
158
  # @param [Numeric] wait
159
159
  # @param [Boolean] echo
160
160
  def self.run(*arguments, sudo: SUDO, throw: true, wait: 0, echo: true)
161
- command = self.command(*arguments, substitute: sudo)
161
+ command = self.command(*arguments, sudo: sudo)
162
162
 
163
163
  if echo
164
164
  Color.echo("+ #{command}", Color::GREEN)
@@ -172,7 +172,7 @@ module DockerCore
172
172
  # @param [Array] arguments
173
173
  # @param [Boolean, String] sudo
174
174
  def self.execute(*arguments, sudo: SUDO, echo: true)
175
- command = self.command(*arguments, substitute: sudo)
175
+ command = self.command(*arguments, sudo: sudo)
176
176
 
177
177
  if echo
178
178
  Color.echo("= #{command}", Color::CYAN)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: docker_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.24
4
+ version: 0.0.25
5
5
  platform: ruby
6
6
  authors:
7
7
  - agrozyme