class Trello::Association

Attributes

options[R]
owner[R]
proxy[R]
target[R]

Public Class Methods

new(owner, target) click to toggle source
# File lib/trello/association.rb, line 5
def initialize(owner, target)
  @owner  = owner
  @target = target
  @options = {}
  if target.is_a?(Array)
    target.each { |array_element| array_element.client = owner.client }
  end
end