require File.expand_path('cloudally/configuration', __dir__) require File.expand_path('cloudally/api', __dir__) require File.expand_path('cloudally/client', __dir__) require File.expand_path('cloudally/version', __dir__) module CloudAlly extend Configuration # Alias for CloudAlly::Client.new # # @return [CloudAlly::Client] def self.client(options = {}) CloudAlly::Client.new(options) end # Delegate to CloudAlly::Client def self.method_missing(method, *args, &block) return super unless client.respond_to?(method) client.send(method, *args, &block) end # Delegate to CloudAlly::Client def self.respond_to?(method, include_all = false) client.respond_to?(method, include_all) || super end end