proc-extra 0.0.3.1 → 0.0.4

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.
Files changed (2) hide show
  1. data/lib/proc/extra.rb +16 -0
  2. metadata +2 -2
data/lib/proc/extra.rb CHANGED
@@ -16,6 +16,14 @@ class Proc
16
16
  obj.method(:_).to_proc
17
17
  end
18
18
 
19
+ def << (*args)
20
+ first = self
21
+
22
+ proc {|*args2|
23
+ instance_exec(*args, *args2, &first)
24
+ }
25
+ end
26
+
19
27
  def | (second)
20
28
  first = self
21
29
 
@@ -31,4 +39,12 @@ class Proc
31
39
  instance_exec(*args, &first) && instance_exec(*args, &second)
32
40
  }
33
41
  end
42
+
43
+ def + (second)
44
+ first = self
45
+
46
+ proc {|*args|
47
+ instance_exec(instance_exec(*args, &second), &first)
48
+ }
49
+ end
34
50
  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.1
4
+ version: 0.0.4
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-08 00:00:00.000000000 Z
12
+ date: 2012-01-14 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description:
15
15
  email: meh@paranoici.org