module Kernel
Public Instance Methods
dynamic(&block)
click to toggle source
# File lib/rake_factory/kernel_extensions.rb, line 4 def dynamic(&block) RakeFactory::DynamicValue.new(&block) end
static(value)
click to toggle source
# File lib/rake_factory/kernel_extensions.rb, line 8 def static(value) RakeFactory::StaticValue.new(value) end