class Rails::Generators::GeneratedAttribute

:nodoc:

def input_type

:nodoc:
def input_type
  @input_type ||= if type == :text
    "textarea"
  else
    "input"
  end
end