Sha256: 036dbfe71479f00bc090fd1b39930f75888a0ed03eb5d53d4b7d925419509087
Contents?: true
Size: 578 Bytes
Versions: 1
Compression:
Stored size: 578 Bytes
Contents
require 'helium/client/http' require 'helium/client/users' require 'helium/client/organizations' require 'helium/client/sensors' module Helium class Client include Helium::Utils include Helium::Client::Http include Helium::Client::Users include Helium::Client::Organizations include Helium::Client::Sensors attr_accessor :api_key def initialize(api_key:, debug: false) @api_key = api_key @debug = debug end def inspect "<Helium::Client @debug=#{@debug}>" end def debug? @debug == true end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
helium-ruby-0.3.0 | lib/helium/client.rb |