Class: Tmux::Options::JustificationOption Private
- Inherits:
-
SymbolOption
- Object
- Option
- SymbolOption
- Tmux::Options::JustificationOption
- Defined in:
- lib/tmux/options/justification_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
- .to_tmux(value) ⇒ String private
Methods inherited from SymbolOption
Methods inherited from Option
Class Method Details
.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.
12 13 14 15 |
# File 'lib/tmux/options/justification_option.rb', line 12 def to_tmux(value) raise ArgumentError unless [:left, :right, :centre, :default].include?(value) super end |