big_stash 0.4.0 → 0.5.0
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/lib/big_stash/stash_operator.rb +2 -2
- data/lib/big_stash/version.rb +1 -1
- 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: 662e72527a792a550cc18583cbbc300dd830d59d
|
|
4
|
+
data.tar.gz: 7dadbc57c1dee013ee6ff3fffc1f11da46dcaefd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf646f8e770571cc6444537ecd39901b43194b2c94cfa385c7281d6db82c1ffb4a49ceb406702faab3dea7f5ef5e1399347a02390d888d53101919898afc6bdc
|
|
7
|
+
data.tar.gz: 9a712535d0a6f991732bbc4e6ebd86f0724637687b8620dcd73cf5dc435b0bdf325ab8b0a7f6c35ee7bda46e537f53bef601bc7e59f1e41b90d7e61968b747ad
|
|
@@ -40,7 +40,7 @@ module BigStash
|
|
|
40
40
|
|
|
41
41
|
def apply_stash(name)
|
|
42
42
|
if @stashes[name]
|
|
43
|
-
p `cd #{@path}; git stash apply #{name}`
|
|
43
|
+
p `cd #{@path}; git stash apply #{@stashes[name]}`
|
|
44
44
|
else
|
|
45
45
|
p %(Nothing to apply, can not find the stash with name '#{name}', continue...)
|
|
46
46
|
end
|
|
@@ -48,7 +48,7 @@ module BigStash
|
|
|
48
48
|
|
|
49
49
|
def pop_stash(name)
|
|
50
50
|
if @stashes[name]
|
|
51
|
-
p `cd #{@path}; git stash pop #{name}`
|
|
51
|
+
p `cd #{@path}; git stash pop #{@stashes[name]}`
|
|
52
52
|
else
|
|
53
53
|
p %(Nothing to pop, can not find the stash with name '#{name}', continue...)
|
|
54
54
|
end
|
data/lib/big_stash/version.rb
CHANGED