Sha256: f9a2054fab7174ba2f329e9836548277cab4e2bdc19f0640cbca21ebf9d396c0
Contents?: true
Size: 554 Bytes
Versions: 29
Compression:
Stored size: 554 Bytes
Contents
require_relative "base_decorator" module PactBroker module Api module Decorators class EmbeddedVersionDecorator < BaseDecorator camelize_property_names property :number if PactBroker.feature_enabled?(:branches) property :branch property :build_url end link :self do | options | { title: "Version", name: represented.number, href: version_url(options.fetch(:base_url), represented) } end end end end end
Version data entries
29 entries across 29 versions & 1 rubygems