Sha256: ec430f3f47ba22a9178ed094f41a501d8a26667e1cc9ea08996cfc150efa60f0
Contents?: true
Size: 593 Bytes
Versions: 642
Compression:
Stored size: 593 Bytes
Contents
# frozen_string_literal: true module Playbook module Truncate def self.included(base) base.prop :truncate end def truncate_props selected_props = truncate_options.keys.select { |sk| try(sk) } return nil unless selected_props.present? selected_props.map do |k| truncate_value = send(k) "truncate_#{truncate_value}" if truncate_values.include? truncate_value end.compact.join(" ") end def truncate_options { truncate: "truncate", } end def truncate_values %w[1 2 3 4 5] end end end
Version data entries
642 entries across 642 versions & 1 rubygems
Version | Path |
---|---|
playbook_ui-13.14.0.pre.alpha.play1120lintdatepicker1797 | lib/playbook/truncate.rb |
playbook_ui-13.15.0 | lib/playbook/truncate.rb |