class Marta::Server::ServerStore

Special class is used for storing internal variables of the server

@note It is believed that no user will use it

Public Class Methods

has_answer() click to toggle source

Getting info about dialog state

# File lib/marta/server.rb, line 24
def self.has_answer
  @@has_answer
end
has_answer=(value) click to toggle source

Setting info about the dialog state.

# File lib/marta/server.rb, line 29
def self.has_answer=(value)
  @@has_answer = value
end