proc-extra 0.0.3 → 0.0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/lib/proc/extra.rb +2 -2
  2. metadata +2 -2
data/lib/proc/extra.rb CHANGED
@@ -20,7 +20,7 @@ class Proc
20
20
  first = self
21
21
 
22
22
  proc {|*args|
23
- first.call(*args) || second.call(*args)
23
+ instance_exec(*args, &first) || instance_exec(*args, &second)
24
24
  }
25
25
  end
26
26
 
@@ -28,7 +28,7 @@ class Proc
28
28
  first = self
29
29
 
30
30
  proc {|*args|
31
- first.call(*args) && second.call(*args)
31
+ instance_exec(*args, &first) && instance_exec(*args, &second)
32
32
  }
33
33
  end
34
34
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: proc-extra
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.3.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-12-06 00:00:00.000000000 Z
12
+ date: 2011-12-08 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description:
15
15
  email: meh@paranoici.org