aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/type/text.rb
blob: 1ad04daba41e49494dce74f577c367b4b46c04bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
require 'active_model/type/string'

module ActiveModel
  module Type
    class Text < String # :nodoc:
      def type
        :text
      end
    end
  end
end