Sha256: 57f88b0085283aa350f705247dc87f9009bd62feafac881e50111abad95be950
Contents?: true
Size: 730 Bytes
Versions: 18
Compression:
Stored size: 730 Bytes
Contents
# frozen_string_literal: true module Playbook module JustifyContent def self.included(base) base.prop :justify_content end def justify_content_props selected_props = justify_content_options.keys.select { |sk| try(sk) } return nil unless selected_props.present? selected_props.map do |k| justify_content_value = send(k) "justify_content_#{justify_content_value}" if justify_content_values.include? justify_content_value end.compact.join(" ") end def justify_content_options { justify_content: "justify_content", } end def justify_content_values %w[start end center space_between space_around space_evenly] end end end
Version data entries
18 entries across 18 versions & 1 rubygems