module MethodDraw::FormBuilderInstanceMethods

Public Instance Methods

method_draw(method, options = {}) click to toggle source
# File lib/method_draw/method_draw.rb, line 3
def method_draw(method, options = {})
  @template.render(
    :partial => "method_draw/method_draw",
    :locals => {
      :template => @template,
      :object_name => @object_name,
      :method => method,
      :options => objectify_options(options)
    }
  )
end
Also aliased as: svg_edit
svg_edit(method, options = {})
Alias for: method_draw