module Denotificator

Constants

VERSION

Public Class Methods

auth_token() click to toggle source
# File lib/denotificator.rb, line 6
def self.auth_token
  unless defined? @@auth_token
    @@auth_token = nil
  end
  @@auth_token
end
auth_token=(token) click to toggle source
# File lib/denotificator.rb, line 13
def self.auth_token=(token)
  @@auth_token = token
end