Sha256: a3b196ad7c494e8d97d9febd3d135d96e4e9e425a233bce56de72dabc8d2f44e
Contents?: true
Size: 316 Bytes
Versions: 1
Compression:
Stored size: 316 Bytes
Contents
# frozen_string_literal: true require_relative "octopusconnection" module RubyOctopus # Base class to use to perform actions against an Octopus instance. class OctopusClient attr_reader :connection def initialize(url, api_key) @connection = OctopusConnection.new(url, api_key) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rubyoctopus-0.1.0 | lib/rubyoctopus/octopusclient.rb |