Sha256: 74859d47d30ecbccbd1c4b0e407e0b7131d56a541a2c8fb504a7c82c9d513338
Contents?: true
Size: 887 Bytes
Versions: 8
Compression:
Stored size: 887 Bytes
Contents
# # Author:: Matt Eldridge (<matt.eldridge@us.ibm.com>) # © Copyright IBM Corporation 2014. # # LICENSE: MIT (http://opensource.org/licenses/MIT) # # necessary when requiring fog without rubygems while also # maintaining ruby 1.8.7 support (can't use require_relative) __LIB_DIR__ = File.expand_path(File.dirname(__FILE__)) $LOAD_PATH.unshift __LIB_DIR__ unless $LOAD_PATH.include?(__LIB_DIR__) # Use fog and core require 'fog/core' require 'fog' # Previously treated as "core" # data exchange specific (to be extracted and used on a per provider basis) require 'fog/xml' require 'fog/json' require 'fog/core/parser' # deprecation wrappers (XML wrapped version) require 'fog/core/deprecated/connection' require 'fog/core/deprecated_connection_accessors' # any one of these can be required separately. # they all depend on fog/core for shared functionality. require 'fog/softlayer'
Version data entries
8 entries across 8 versions & 1 rubygems