module Tanemaki
Constants
- VERSION
Public Class Methods
call(*args)
click to toggle source
# File lib/tanemaki.rb, line 6 def call(*args) ready(*args) end
default_eval_scope(eval_scope)
click to toggle source
# File lib/tanemaki.rb, line 16 def default_eval_scope(eval_scope) self.default_eval_scope = eval_scope end
default_eval_scope=(eval_scope)
click to toggle source
# File lib/tanemaki.rb, line 21 def default_eval_scope=(eval_scope) @eval_scope = eval_scope end
ready(path, options = {})
click to toggle source
# File lib/tanemaki.rb, line 11 def ready(path, options = {}) Seeder.(Parser.(path), {eval_scope: @eval_scope}.merge(options)) end