instance method field_type

Ruby on Rails 2.3.18

Since v2.2.3 Last seen in v2.3.18

Available in: v2.2.3 v2.3.18

Signature

field_type()

No documentation comment.

Source
# File railties/lib/rails_generator/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 :string                    then :text_field
          when :text                      then :text_area
          when :boolean                   then :check_box
          else
            :text_field
        end      
      end

Defined in railties/lib/rails_generator/generated_attribute.rb line 13 · View on GitHub · Improve this page · Find usages on GitHub

Defined in Rails::Generator::GeneratedAttribute

Type at least 2 characters to search.

↑↓ navigate · open · esc close