8 filesupdated Jun 18, 2026
files7Download
./libJun 16, 2026./specJun 16, 2026.gitignoreJun 16, 2026call_with_locals.gemspecJun 16, 2026LICENSEJun 16, 2026RakefileJun 16, 2026READMEJun 18, 2026README
= call_with_locals by Kevin Ballard kevin@sb.org
== DESCRIPTION
Ads a new method Proc#call_with_locals to call the proc with new locals
== EXAMPLES
proc { x + 1 }.call_with_locals(x => 3) => 4
proc { |a| f[a] }.call_with_locals(3, :f => proc { |x| x + 4 }) => 7