Sha256: 6a561575efb0f59a0fb6f537bfbd47222969e4dee7b4ae3852f92cdd70731632
Contents?: true
Size: 473 Bytes
Versions: 7
Compression:
Stored size: 473 Bytes
Contents
require 'json' require 'logger' require 'pushbullet/pushable' require 'pushbullet/client' require 'pushbullet/resource' require 'pushbullet/contact' require 'pushbullet/device' require 'pushbullet/push' require 'pushbullet/channel' require 'pushbullet/error' require 'core_ext/string.rb' module Pushbullet def self.api_token=(api_token) @api_token = api_token end def self.api_token @api_token end def self.client @client ||= Client.new end end
Version data entries
7 entries across 5 versions & 2 rubygems