class Formulario::Field::Blank

Public Class Methods

new(raw_value=nil) click to toggle source
Calls superclass method Formulario::Field::new
# File lib/formulario/fields/blank.rb, line 4
def initialize(raw_value=nil)
  super(raw_value)
end

Public Instance Methods

blank?() click to toggle source
# File lib/formulario/fields/blank.rb, line 8
def blank?
  true
end