module Pistaa

Constants

VERSION

Public Class Methods

[](slot_key) click to toggle source
# File lib/pistaa.rb, line 5
def [](slot_key)
  slots[slot_key]
end
slot_keys() click to toggle source
# File lib/pistaa.rb, line 9
def slot_keys
  slots.keys
end

Protected Class Methods

slots() click to toggle source
# File lib/pistaa.rb, line 15
def slots
  @slots ||= Hash.new do |hash, key| 
    hash[key] = Pistaa::Slot.new
  end
end