Skip to content

Latest commit

 

History

History
64 lines (27 loc) · 705 Bytes

GeneratedAttribute.rst

File metadata and controls

64 lines (27 loc) · 705 Bytes

GeneratedAttribute

nodoc

Constants

Files

Methods

#type_class

def type_class
  case type.to_s.downcase
  when 'any' then 'any'
  when 'datetime' then 'DateTime'
  when 'date' then 'Date'
  when 'integer', 'number', 'fixnum' then 'Integer'
  when 'float' then 'Float'
  else
    'String'
  end
end