markbates (owner)

Revisions

gist: 42711 Download_button fork
public
Public Clone URL: git://gist.github.com/42711.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
10
11
    class StripesBuilder
      include Mack::View::FormBuilder
      
      partial :text_field, 'fb_partials/text_field'
      partial :form_start, 'fb_partials/form_start'
      partial :all, 'fb_partials/all'
      
      def form_end
        '</div>'
      end
    end