aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/type/text.rb
blob: 7c0d647706516430acef08e205af2f6e97ec0c17 (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