7458abc8b3
git-svn-id: file:///home/svn/framework3/trunk@12815 4d416f70-5f16-0410-b530-b9f4589650da
14 lines
198 B
Ruby
14 lines
198 B
Ruby
module RKelly
|
|
class Runtime
|
|
class RubyFunction
|
|
def initialize(&block)
|
|
@code = block
|
|
end
|
|
|
|
def call(chain, *args)
|
|
@code.call(*args)
|
|
end
|
|
end
|
|
end
|
|
end
|