Sha256: 5d1d1a208df73707aa27f6f5bbd61fa440fd1b56cd9a9e5483f65955ea4ee9c8
Contents?: true
Size: 471 Bytes
Versions: 12
Compression:
Stored size: 471 Bytes
Contents
module Arel module Attributes class Attribute < Struct.new :relation, :name, :column include Arel::Expressions include Arel::Predications end class String < Attribute; end class Time < Attribute; end class Boolean < Attribute; end class Decimal < Attribute; end class Float < Attribute; end class Integer < Attribute; end class Undefined < Attribute; end end Attribute = Attributes::Attribute end
Version data entries
12 entries across 12 versions & 2 rubygems