Sha256: c5c3d0f33234dfc6deb814c23807fc128a26b7a700b7c617b0f9c310abb9a0d6

Contents?: true

Size: 323 Bytes

Versions: 1

Compression:

Stored size: 323 Bytes

Contents

module Workarea
  decorate Shipping, with: :gift_wrapping do
    decorated do
      field :gift_message, type: String

      validates :gift_message,
                length: { maximum: :gift_message_max_length }

      def gift_message_max_length
        Workarea.config.gift_message_max_length
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
workarea-gift_wrapping-1.3.0 app/models/workarea/shipping.decorator