Sha256: 7df08e2533dbdbb0c36bfb0401a02009243d954f4e67ac06d4660355f77c44ac
Contents?: true
Size: 458 Bytes
Versions: 2
Compression:
Stored size: 458 Bytes
Contents
require 'logger' require 'json' require 'faraday' require 'faraday_middleware' require 'openssl' require 'infoblox/version' require 'infoblox/connection' require 'infoblox/resource' # Require everything in the resource directory Dir[File.expand_path('../infoblox/resource/*.rb', __FILE__)].each do |f| require f end module Infoblox WAPI_VERSION = ENV['WAPI_VERSION'] || '1.0' BASE_PATH = '/wapi/v' + WAPI_VERSION + '/' DEBUG = ENV['DEBUG'] end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
infoblox-0.2.19 | lib/infoblox.rb |
infoblox-0.2.18 | lib/infoblox.rb |