Sha256: b2295490a287e3cb7c82bc0b1c12f3a260396de48dcf4d35fb789862f62064e1
Contents?: true
Size: 774 Bytes
Versions: 45
Compression:
Stored size: 774 Bytes
Contents
require 'pact_broker/client/environments/environment_command' require 'pact_broker/client/describe_text_formatter' module PactBroker module Client module Environments class DescribeEnvironment < PactBroker::Client::Environments::EnvironmentCommand private def do_call existing_environment_resource! PactBroker::Client::CommandResult.new(true, result_message) end def result_message if json_output? existing_environment_resource.response.raw_body else properties = existing_environment_resource.response.body.except("_links", "_embedded") PactBroker::Client::DescribeTextFormatter.call(properties) end end end end end end
Version data entries
45 entries across 45 versions & 1 rubygems