Sha256: 5d9ce14cb2bc13eae5979caadbad4d0a55da378fee4768cc50dbd871f970ed38
Contents?: true
Size: 881 Bytes
Versions: 4
Compression:
Stored size: 881 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__) autoload :Monitoring, File.expand_path('../oraclecloud/monitoring', __FILE__) service(:compute, 'Compute') service(:storage, 'Storage') service(:java, 'Java') service(:database, 'Database') service(:soa, 'SOA') service(:monitoring, 'Monitoring') end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
fog-oraclecloud-0.1.17 | lib/fog/oraclecloud.rb |
fog-oraclecloud-0.1.16 | lib/fog/oraclecloud.rb |
fog-oraclecloud-0.1.15 | lib/fog/oraclecloud.rb |
fog-oraclecloud-0.1.14 | lib/fog/oraclecloud.rb |