Sha256: 10a9618112a431fbc20334143f941632532ae1f861886f680c1b7bc0fa363711
Contents?: true
Size: 1.17 KB
Versions: 29
Compression:
Stored size: 1.17 KB
Contents
require "pact_broker/api/decorators/base_decorator" require "pact_broker/api/decorators/embedded_pacticipant_decorator" require "pact_broker/api/decorators/embedded_version_decorator" require "pact_broker/api/decorators/environment_decorator" module PactBroker module Api module Decorators class DeployedVersionDecorator < BaseDecorator property :uuid property :currently_deployed, camelize: true property :target, camelize: true # deprecated property :applicationInstance, getter: lambda { |_| target } include Timestamps property :undeployedAt, getter: lambda { |_| undeployed_at ? FormatDateTime.call(undeployed_at) : nil }, writeable: false property :pacticipant, :extend => EmbeddedPacticipantDecorator, writeable: false, embedded: true property :version, :extend => EmbeddedVersionDecorator, writeable: false, embedded: true property :environment, :extend => EnvironmentDecorator, writeable: false, embedded: true link :self do | user_options | { href: deployed_version_url(represented, user_options.fetch(:base_url)) } end end end end end
Version data entries
29 entries across 29 versions & 1 rubygems