swissknife 0.0.2 → 0.0.3
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 +4 -4
- data/bin/pack +0 -0
- data/lib/swissknife.rb +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1599015017aa27b069d523852aa6f4af3b7c0814
|
4
|
+
data.tar.gz: b8b3499aa72241f85c98bcf664c79a9acc23e487
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 214943c79a2238a67a53a1e9c413d6df7a9df6160810a0520ea78e6bd00fcf588c9e430add357418870183aa85ba2990a61949244a533d284f0b33c221de3f6d
|
7
|
+
data.tar.gz: 5e6a3f4f7bdcc98d1de9f46ede8db2bff50cb75ef21b7cd33f4e387c67f0a6e7563db487c76bc083530f3dd7eb44403beeb5dc6ed447197993dbc0d7bea35760
|
data/bin/pack
CHANGED
File without changes
|
data/lib/swissknife.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
module SwissKnife
|
2
|
-
VERSION = '0.0.
|
2
|
+
VERSION = '0.0.3'
|
3
3
|
|
4
4
|
class Util
|
5
5
|
def exit # quits whatever console you're using: cross-platform
|
@@ -12,9 +12,9 @@ module SwissKnife
|
|
12
12
|
|
13
13
|
def pack # bundles a Ruby project's dependencies to vendor/bundle
|
14
14
|
if system 'bundle --path vendor/bundle'
|
15
|
-
puts
|
15
|
+
puts "\nDependencies set up successfully!"
|
16
16
|
else
|
17
|
-
puts
|
17
|
+
puts "\nSomething went wrong..."
|
18
18
|
end
|
19
19
|
end
|
20
20
|
end
|