# File lib/ramaze/helper/form.rb, line 10 def form_checkbox(label, name, checked = false) hash = {:type => :checkbox, :name => name} hash[:checked] = 'checked' if checked form_input(label, hash) end