Module: Transproc::ProcTransformations
- Extended by:
- Registry
- Defined in:
- lib/transproc/proc.rb
Overview
Transformation functions for Procs
Class Method Summary collapse
-
.bind(value, binding, fn) ⇒ Proc
Change the binding for the given function.
Methods included from Registry
[], contain?, fetch, import, register, store
Class Method Details
.bind(value, binding, fn) ⇒ Proc
Change the binding for the given function
40 41 42 |
# File 'lib/transproc/proc.rb', line 40 def self.bind(value, binding, fn) binding.instance_exec(value, &fn) end |