Module: Playbook::Flex
- Included in:
- KitBase
- Defined in:
- lib/playbook/flex.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.included(base) ⇒ Object
5 6 7 |
# File 'lib/playbook/flex.rb', line 5 def self.included(base) base.prop :flex end |
Instance Method Details
#flex_options ⇒ Object
19 20 21 22 23 |
# File 'lib/playbook/flex.rb', line 19 def { flex: "flex", } end |
#flex_props ⇒ Object
9 10 11 12 13 14 15 16 17 |
# File 'lib/playbook/flex.rb', line 9 def flex_props selected_props = .keys.select { |sk| try(sk) } return nil unless selected_props.present? selected_props.map do |k| flex_value = send(k) "flex_#{flex_value}" if flex_values.include? flex_value end.compact.join(" ") end |
#flex_values ⇒ Object
25 26 27 |
# File 'lib/playbook/flex.rb', line 25 def flex_values %w[auto initial 0 1 2 3 4 5 6 7 8 9 10 11 12 none] end |