Sha256: 642373b6708e89840ad54bd2051586c149504b4d424f29674a1b0ceef2f2e767
Contents?: true
Size: 612 Bytes
Versions: 37
Compression:
Stored size: 612 Bytes
Contents
module Formtastic module Inputs module Base module Associations include Formtastic::Helpers::Reflection # :belongs_to, etc def association @association ||= association_macro_for_method(method) end def reflection @reflection ||= reflection_for(method) end def belongs_to? association == :belongs_to end def has_many? association == :has_many end def association_primary_key association_primary_key_for_method(method) end end end end end
Version data entries
37 entries across 37 versions & 3 rubygems