Module: Playbook::JustifySelf
- Included in:
- KitBase
- Defined in:
- lib/playbook/justify_self.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.included(base) ⇒ Object
5 6 7 |
# File 'lib/playbook/justify_self.rb', line 5 def self.included(base) base.prop :justify_self end |
Instance Method Details
#justify_self_options ⇒ Object
19 20 21 22 23 |
# File 'lib/playbook/justify_self.rb', line 19 def { justify_self: "justify_self", } end |
#justify_self_props ⇒ Object
9 10 11 12 13 14 15 16 17 |
# File 'lib/playbook/justify_self.rb', line 9 def justify_self_props selected_props = .keys.select { |sk| try(sk) } return nil unless selected_props.present? selected_props.map do |k| justify_self_value = send(k) "justify_self_#{justify_self_value}" if justify_self_values.include? justify_self_value end.compact.join(" ") end |
#justify_self_values ⇒ Object
25 26 27 |
# File 'lib/playbook/justify_self.rb', line 25 def justify_self_values %w[auto start end center stretch] end |