associationist icon indicating copy to clipboard operation
associationist copied to clipboard

A gem to define virtual associations on Rails models

Results 1 associationist issues
Sort by recently updated
recently updated
newest added

For example, ```ruby class Order < ApplicationRecord include Associationist::Mixin.new( name: :products, scope: -> {} ) # this not working at least when using postgres has_many :stocks, through: :products end ```...