class Assignbot::Variable

represent the variable both from target, and from source; and through which method the value from source can be copied to target

Attributes

assigner[R]
receptor[RW]

receptor, receive value

source_variable[RW]
target_variable[RW]

the variable to which the value will be copied to

Public Class Methods

new(assigner) click to toggle source
# File lib/assignbot/foundations/variable.rb, line 14
def initialize(assigner)
  @assigner = assigner
end