Class: Tmux::Options::ClockModeStyleOption Private
- Inherits:
-
SymbolOption
- Object
- Option
- SymbolOption
- Tmux::Options::ClockModeStyleOption
- Defined in:
- lib/tmux/options/clock_mode_style_option.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Class Method Summary collapse
- .from_tmux(value) ⇒ Symbol private
- .to_tmux(value) ⇒ String private
Class Method Details
.from_tmux(value) ⇒ Symbol
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
12 13 14 |
# File 'lib/tmux/options/clock_mode_style_option.rb', line 12 def from_tmux(value) super || {12 => :twelve, 24 => :twenty_four}[value] end |
.to_tmux(value) ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
20 21 22 23 |
# File 'lib/tmux/options/clock_mode_style_option.rb', line 20 def to_tmux(value) raise ArgumentError unless [:twelve, :twenty_four].include?(value) super end |