module Seatbelt::TapeDeck

A tape deck holds several tapes and 'plays' the section for a query. (See respond for details.)

Public Class Methods

included(base) click to toggle source
# File lib/seatbelt/tape_deck.rb, line 7
def self.included(base)
  base.class_eval do
    extend ClassMethods

    private_class_method  :delegate_answer,
                          :get_answer_from_tape
  end
end