Sha256: 522680a71225f77e299372e36aa391c0516d1e8abe6ec68ea2e85b9a0113c899
Contents?: true
Size: 432 Bytes
Versions: 5
Compression:
Stored size: 432 Bytes
Contents
module Rbox class Client include Connection include Authentication include Download include Item attr_accessor :config, :api_token, :auth_token, :ticket attr_reader :connection def initialize(options = {}) @config = options @api_token = @config[:api_token] @auth_token = @config[:auth_token] @ticket = @config[:ticket] @connection = default_connection end end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
rbox-0.1.4 | lib/rbox/client.rb |
rbox-0.1.3 | lib/rbox/client.rb |
rbox-0.1.2 | lib/rbox/client.rb |
rbox-0.1.1 | lib/rbox/client.rb |
rbox-0.1.0 | lib/rbox/client.rb |