markbates (owner)

Revisions

gist: 42710 Download_button fork
public
Public Clone URL: git://gist.github.com/42710.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
10
11
12
  class GodfatherFormBuilder
    include Mack::View::FormBuilder
    
    def text_field(*args)
      "<p>#{element(:text_field, *args)}</p>"
    end
    
    def all(sym, *args)
      "<i>#{element(sym, *args)}</i>"
    end
    
  end