module Enviso
Constants
- VERSION
Public Class Methods
set_credentials_from_environment()
click to toggle source
For testing purpose only: set the username and password in environment variables to make the tests pass with your test credentials.
# File lib/enviso.rb, line 15 def self.set_credentials_from_environment Config.api_key = ENV["ENVISO_API_KEY"] Config.api_secret = ENV["ENVISO_API_SECRET"] Config.tenant_key = ENV["ENVISO_TENANT_KEY"] end