Class: Rails::Generator::GeneratedAttribute
- Defined in:
- lib/rails_generator/generated_attribute.rb
Instance Attribute Summary collapse
-
#column ⇒ Object
Returns the value of attribute column.
-
#name ⇒ Object
Returns the value of attribute name.
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
- #default ⇒ Object
- #field_type ⇒ Object
-
#initialize(name, type) ⇒ GeneratedAttribute
constructor
A new instance of GeneratedAttribute.
Constructor Details
#initialize(name, type) ⇒ GeneratedAttribute
Returns a new instance of GeneratedAttribute.
8 9 10 11 |
# File 'lib/rails_generator/generated_attribute.rb', line 8 def initialize(name, type) @name, @type = name, type.to_sym @column = ActiveRecord::ConnectionAdapters::Column.new(name, nil, @type) end |
Instance Attribute Details
#column ⇒ Object
Returns the value of attribute column.
6 7 8 |
# File 'lib/rails_generator/generated_attribute.rb', line 6 def column @column end |
#name ⇒ Object
Returns the value of attribute name.
6 7 8 |
# File 'lib/rails_generator/generated_attribute.rb', line 6 def name @name end |
#type ⇒ Object
Returns the value of attribute type.
6 7 8 |
# File 'lib/rails_generator/generated_attribute.rb', line 6 def type @type end |
Instance Method Details
#default ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/rails_generator/generated_attribute.rb', line 26 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 else "" end end |
#field_type ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/rails_generator/generated_attribute.rb', line 13 def field_type @field_type ||= case type when :integer, :float, :decimal then :text_field when :datetime, :timestamp, :time then :datetime_select when :date then :date_select when :string then :text_field when :text then :text_area when :boolean then :check_box else :text_field end end |