Sha256: 6781f19f7a44faa4d4b7bcb4507f0da39e6f8cee3bb738ab08a6e1f116355e63
Contents?: true
Size: 1.17 KB
Versions: 9
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 } 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 include Timestamps link :self do | user_options | { href: deployed_version_url(represented, user_options.fetch(:base_url)) } end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems