class Item

The Item class is the Hitsuji representation of a variable, and its properties include a name and a value. The value has read-write properties, but once the Item is bound, a seperate method must be used to read and change it. Examples of its use can be seen in the documentation for the Hitsuji.item method.

Attributes

name[RW]
value[RW]

Public Class Methods

new(name, value) click to toggle source
# File lib/subsystem.rb, line 8
def initialize(name, value)
  @name = name
  @value = value
end