Class: Rails::Generators::GeneratedAttribute
- Inherits:
-
Object
- Object
- Rails::Generators::GeneratedAttribute
- Defined in:
- railties/lib/rails/generators/generated_attribute.rb
Instance Attribute Summary (collapse)
-
- (Object) name
Returns the value of attribute name.
-
- (Object) type
Returns the value of attribute type.
Instance Method Summary (collapse)
- - (Object) default
- - (Object) field_type
- - (Object) human_name
-
- (GeneratedAttribute) initialize(name, type)
constructor
A new instance of GeneratedAttribute.
- - (Boolean) reference?
Constructor Details
- (GeneratedAttribute) initialize(name, type)
A new instance of GeneratedAttribute
8 9 10 11 |
# File 'railties/lib/rails/generators/generated_attribute.rb', line 8 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 |
Instance Attribute Details
- (Object) name
Returns the value of attribute name
6 7 8 |
# File 'railties/lib/rails/generators/generated_attribute.rb', line 6 def name @name end |
- (Object) type
Returns the value of attribute type
6 7 8 |
# File 'railties/lib/rails/generators/generated_attribute.rb', line 6 def type @type end |
Instance Method Details
- (Object) default
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'railties/lib/rails/generators/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 when :references, :belongs_to then nil else "" end end |
- (Object) field_type
13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'railties/lib/rails/generators/generated_attribute.rb', line 13 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 |
- (Object) human_name
42 43 44 |
# File 'railties/lib/rails/generators/generated_attribute.rb', line 42 def human_name name.to_s.humanize end |
- (Boolean) reference?
46 47 48 |
# File 'railties/lib/rails/generators/generated_attribute.rb', line 46 def reference? [ :references, :belongs_to ].include?(self.type) end |