Top Level Namespace

Defined Under Namespace

Modules: ServerPush, Sinatra, SinatraSockets Classes: CreateTodos, Server, Todo, Ws

Constant Summary collapse

Users =
Hash.new { |hash, key| hash[key] = Set.new }
AuthenticatedTokens =
{}
Sockets =
Hash.new { |hash, key| hash[key] = Set.new }
CLIENT_BASE_URL =
if ENV["RACK_ENV"] == "production"
  "https://maxpleaner.github.io"
else
  "http://localhost:8080"
end