module Pushbullet

Public Class Methods

api_token() click to toggle source
# File lib/pushbullet.rb, line 19
def self.api_token
  @api_token
end
api_token=(api_token) click to toggle source
# File lib/pushbullet.rb, line 15
def self.api_token=(api_token)
  @api_token = api_token
end
client() click to toggle source
# File lib/pushbullet.rb, line 23
def self.client
  @client ||= Client.new
end