fog/fog-profitbricks

View on GitHub
lib/fog/profitbricks.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "fog/core"
require "fog/json"

require File.expand_path('../profitbricks/version', __FILE__)

module Fog
  module Compute
    autoload :ProfitBricks, File.expand_path('../profitbricks/compute', __FILE__)
  end

  module Models
    module ProfitBricks
      autoload :Base, File.expand_path('../profitbricks/models/base', __FILE__)
    end
  end

  module ProfitBricks
    extend Fog::Provider

    service(:compute, "Compute")
  end
end