Sha256: f5578920f2cd4829055b44fae0faf81026ef75fe3e8f85e4bb09b1bb37d83d89
Contents?: true
Size: 684 Bytes
Versions: 3
Compression:
Stored size: 684 Bytes
Contents
module Tiktalik ROOT = File.expand_path(File.dirname(__FILE__)) autoload :Computing, "#{ROOT}/tiktalik/computing" autoload :Error, "#{ROOT}/tiktalik/error" autoload :Object, "#{ROOT}/tiktalik/object" autoload :VERSION, "#{ROOT}/tiktalik/version" def self.base_url; 'https://www.tiktalik.com'; end def self.base_path; '/api/v1'; end def self.api_key; @api_key || ENV['API_KEY']; end def self.api_key=(val); @api_key = val; end def self.api_secret_key; @api_secret_key || ENV['API_SECRET_KEY']; end def self.api_secret_key=(val); @api_secret_key = val; end def self.ca_file; @ca_file || nil; end def self.ca_file=(val); @ca_file = val; end end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
tiktalik-1.0.5 | lib/tiktalik.rb |
vagrant-tiktalik-0.0.3 | vendor/bundle/ruby/2.0.0/gems/tiktalik-1.0.4/lib/tiktalik.rb |
tiktalik-1.0.4 | lib/tiktalik.rb |