big_stash 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6bedd23c37bbde845f2ec258222756a9702688e3
4
- data.tar.gz: bc6b99127b9ac2da97382f3bc64e4f0bc2e49844
3
+ metadata.gz: 662e72527a792a550cc18583cbbc300dd830d59d
4
+ data.tar.gz: 7dadbc57c1dee013ee6ff3fffc1f11da46dcaefd
5
5
  SHA512:
6
- metadata.gz: 0d497ba2fb957e9772dcae04ae8c5240c6f5a1c34c2535cf89b9b9e23854160a51f7d96a2056baf78719d787d9c7335bfd32552c793ee162f91c485a0f640c2e
7
- data.tar.gz: 711eaf09cc6851f63f94d2e0b2a0fe9b69a0d3581f3fbea8ebf566463d1ed272ba643d517d70f11f5e747994557d21cebc5bb4ba5df7d02f3644b93a68c66930
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
@@ -1,3 +1,3 @@
1
1
  module BigStash
2
- VERSION = '0.4.0'.freeze
2
+ VERSION = '0.5.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: big_stash
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - mmoaay