Sha256: 3565a3aeeea9874d8f5941694d10338d1af76b92f0ab69be15da22ebbf805c77
Contents?: true
Size: 1.62 KB
Versions: 1
Compression:
Stored size: 1.62 KB
Contents
require 'active_support/time' require 'active_support/core_ext/object/inclusion' module Rails module Generators class GeneratedAttribute attr_accessor :name, :type def initialize(name, type) raise Thor::Error, "Missing type for attribute '#{name}'.\nExample: '#{name}:string' where string is the type." if type.blank? @name, @type = name, type.to_sym end def field_type @field_type ||= case type when :integer, :float, :decimal then :text_field when :time then :time_select when :datetime, :timestamp then :datetime_select when :date then :date_select when :text then :text_area when :boolean then :check_box else :text_field end end def default @default ||= case type when :integer then 1 when :float then 1.5 when :decimal then "9.99" when :datetime, :timestamp, :time then Time.now.to_s(:db) when :date then Date.today.to_s(:db) when :string then "MyString" when :text then "MyText" when :boolean then false when :references, :belongs_to then nil else "" end end def human_name name.to_s.humanize end def reference? self.type.in?([:references, :belongs_to]) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
railties-3.1.0.beta1 | lib/rails/generators/generated_attribute.rb |