module Superstore::AttributeAssignment

Public Instance Methods

_assign_attribute(k, v) click to toggle source
# File lib/superstore/attribute_assignment.rb, line 3
def _assign_attribute(k, v)
  public_send("#{k}=", v) if respond_to?("#{k}=")
end