dip 4.0.0 → 4.0.1

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: 814f6f4b810a700663a169d6d34f535c010d7c9c9241a1343307f9657f50a9cd
4
- data.tar.gz: 2d6b76d8e3459302accc2c264148083bb0b15d63fb365e9d4a12ed245820f843
3
+ metadata.gz: e9e182083867a474e1a4d690d64b99f0f32f3558c602fcc1f45d8b26de9cec80
4
+ data.tar.gz: 23e86f513913591650ebae51677abe4d1106394d3d85bee525e6c8aa24a32e88
5
5
  SHA512:
6
- metadata.gz: dc0e2299a4eed706c48868779fe655c7207e9b8d6353ed5bbb5887f318d1099e8c1db556f05af000b2869dc8e483b58ed874382062ebc2ea23d27def0481f705
7
- data.tar.gz: f0a832bb6d9394b84a9e10b248ea9f1122d6cbed0fd8c973c679f9fc34faad066477b044bd8090cb8000b63d47f1d7329a67fd83e55a5d84e11c49379ec88d3e
6
+ metadata.gz: '0984e1ff5bbead57f058908da95c97b67511ed99114921902c2325fecf1424df6b6b3dbe117e228baff0780c553d5bbe2385994bcede175002b48adb413a3f46'
7
+ data.tar.gz: 42dbc12ed63103526e598a67617f8120be78caa5814d4d6ab68acc338bbad8e08189d5d8f34564cb9ff56b355fee2a3db3ac002643d743a8bded41aa60168b08
data/README.md CHANGED
@@ -75,7 +75,7 @@ It can be found at [releases page](https://github.com/bibendi/dip/releases)
75
75
  or type bellow into your terminal:
76
76
 
77
77
  ```sh
78
- curl -L https://github.com/bibendi/dip/releases/download/4.0.0/dip-`uname -s`-`uname -m` > /usr/local/bin/dip
78
+ curl -L https://github.com/bibendi/dip/releases/download/4.0.1/dip-`uname -s`-`uname -m` > /usr/local/bin/dip
79
79
  chmod +x /usr/local/bin/dip
80
80
  ```
81
81
 
@@ -22,7 +22,7 @@ module Dip
22
22
 
23
23
  def method_missing(cmd, *args)
24
24
  if Dip.config.interaction.key?(cmd.to_sym)
25
- self.class.start(["run", cmd] + args)
25
+ self.class.start(["run", cmd.to_s, *args])
26
26
  else
27
27
  super
28
28
  end
@@ -15,7 +15,7 @@ module Dip
15
15
  entry = entries[name.to_sym]
16
16
  return unless entry
17
17
 
18
- commands = expand(name, entry)
18
+ commands = expand(name.to_s, entry)
19
19
 
20
20
  keys = [name, *argv]
21
21
  rest = []
@@ -27,6 +27,8 @@ module Dip
27
27
  rest << keys.pop
28
28
  end
29
29
  end
30
+
31
+ nil
30
32
  end
31
33
 
32
34
  def list
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dip
4
- VERSION = "4.0.0"
4
+ VERSION = "4.0.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dip
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - bibendi