Class: Tmux::Options::StringOption Private

Inherits:
Option
  • Object
show all
Defined in:
lib/tmux/options/string_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.

See Also:

Class Method Summary collapse

Class Method Details

.from_tmux(value) ⇒ String, 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.

Parameters:

  • value (String)

    the value to cast

Returns:

  • (String, Symbol)

See Also:



12
13
14
# File 'lib/tmux/options/string_option.rb', line 12

def from_tmux(value)
  super || value.gsub(/^"|"$/, "")
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.

Parameters:

  • value (Object)

    the value to cast

Returns:

  • (String)

See Also:



20
21
22
# File 'lib/tmux/options/string_option.rb', line 20

def to_tmux(value)
  super || value.inspect.gsub(/^"|"$/, "")
end