module Alluc
Constants
- VERSION
Public Class Methods
connect(api_key, type = :alluc)
click to toggle source
# File lib/alluc.rb, line 11 def self.connect(api_key, type = :alluc) Excon.defaults[:ssl_verify_peer] = false Alluc::Api.instance.tap do |api| api.connect(api_key, type) end end