ruboty-packman 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/ruboty/packman/github_repository.rb +6 -1
- data/lib/ruboty/packman/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e65275ac511a8659ae910a35f878a3570fce30e162c0e35013840e569a7610cf
|
4
|
+
data.tar.gz: d61e0701bc7d9415629e3ba0a56cdc5a9fc10a9e84febe8ac04da6f1f6d31263
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ad7e711232e071744c940b94ff5f36398b149ed613709169792f1c6302b1d085d378f082697037c3d45efa439c2dc8e24e0cde7641615a38e78cb96af5d314c
|
7
|
+
data.tar.gz: f244d44b681d34872288deeac255a2727b87bd7dfdf765dfb6a472ed6ff47b9372ae3c52bf7c93cedaa37e7ef663d27cbb58345b328aa584d5cdf770658ad9f2
|
@@ -32,7 +32,12 @@ module Ruboty
|
|
32
32
|
end
|
33
33
|
|
34
34
|
def bundle_update!
|
35
|
-
|
35
|
+
cmd = [
|
36
|
+
"cd #{sync_directory.shellescape}",
|
37
|
+
"bundle install --path vendor/bundle",
|
38
|
+
"bundle update"
|
39
|
+
]
|
40
|
+
out, err, status = Bundler.with_clean_env { Open3.capture3(cmd.join(' && ')) }
|
36
41
|
end
|
37
42
|
|
38
43
|
def push!
|