Sha256: 9f356c772dedaeee834531ac792944375b52d1d9577eb8c65affa2b557f317c2
Contents?: true
Size: 789 Bytes
Versions: 12
Compression:
Stored size: 789 Bytes
Contents
require 'fog/core' require 'fog/json' require 'fog/xml' require File.expand_path('../oraclecloud/version', __FILE__) module Fog module Compute autoload :OracleCloud, File.expand_path('../oraclecloud/compute', __FILE__) end module Storage autoload :OracleCloud, File.expand_path('../oraclecloud/storage', __FILE__) end module OracleCloud extend Fog::Provider autoload :Java, File.expand_path('../oraclecloud/java', __FILE__) autoload :Database, File.expand_path('../oraclecloud/database', __FILE__) autoload :SOA, File.expand_path('../oraclecloud/soa', __FILE__) service(:compute, 'Compute') service(:storage, 'Storage') service(:java, 'Java') service(:database, 'Database') service(:soa, 'SOA') end end
Version data entries
12 entries across 12 versions & 1 rubygems