class ArDocStore::Attributes::Date
Public Instance Methods
attribute_type()
click to toggle source
# File lib/ar_doc_store/attributes/date.rb, line 18 def attribute_type ActiveRecord::Type::Date end
define_query_method()
click to toggle source
# File lib/ar_doc_store/attributes/date.rb, line 6 def define_query_method model.class_eval <<-CODE, __FILE__, __LINE__ + 1 def #{attribute}? #{attribute}.present? end CODE end
type()
click to toggle source
# File lib/ar_doc_store/attributes/date.rb, line 14 def type :date end