lib/fog/cloudatcost.rb in fog-cloudatcost-0.2.3 vs lib/fog/cloudatcost.rb in fog-cloudatcost-0.4.0
- old
+ new
@@ -1,5 +1,17 @@
+# frozen_string_literal: true
+
require 'fog/core'
-require 'fog/xml'
require 'fog/json'
require_relative 'cloudatcost/version'
+
+module Fog
+ module CloudAtCost
+ extend Fog::Provider
+ service(:compute, 'Compute')
+ end
+
+ module Compute
+ autoload :CloudAtCost, File.expand_path('../cloudatcost/compute', __FILE__)
+ end
+end