Sha256: 59b0fca749e638658d11a8a2cfed94b53d8f8e384692e38d8559c8f0736cb6f2
Contents?: true
Size: 470 Bytes
Versions: 8
Compression:
Stored size: 470 Bytes
Contents
module Formtastic module Inputs module Base module Database def column if object.respond_to?(:column_for_attribute) # Remove deprecation wrapper & review after Rails 5.0 ships ActiveSupport::Deprecation.silence do object.column_for_attribute(method) end end end def column? !column.nil? end end end end end
Version data entries
8 entries across 8 versions & 3 rubygems