Class: Utils::ConfigFile::SshTunnel
Defined Under Namespace
Classes: CopyPaste
Instance Method Summary
collapse
Methods inherited from BlockConfig
config, inherited, #to_ruby
Constructor Details
Returns a new instance of SshTunnel.
180
181
182
183
|
# File 'lib/utils/config_file.rb', line 180
def initialize
super
self.terminal_multiplexer = terminal_multiplexer
end
|
Instance Method Details
#copy_paste(enable = false, &block) ⇒ Object
232
233
234
235
236
237
238
239
240
241
242
|
# File 'lib/utils/config_file.rb', line 232
def copy_paste(enable = false, &block)
if @copy_paste
@copy_paste
else
if block
@copy_paste = CopyPaste.new(&block)
elsif enable
@copy_paste = CopyPaste.new {}
end
end
end
|
#multiplexer_attach(session) ⇒ Object
209
210
211
212
213
214
215
216
|
# File 'lib/utils/config_file.rb', line 209
def multiplexer_attach(session)
case @multiplexer
when 'screen'
'screen -DUR "%s"' % session
when 'tmux'
'tmux -u attach -d -t "%s"' % session
end
end
|
#multiplexer_list ⇒ Object
191
192
193
194
195
196
197
198
|
# File 'lib/utils/config_file.rb', line 191
def multiplexer_list
case @multiplexer
when 'screen'
'screen -ls'
when 'tmux'
'tmux ls'
end
end
|
#multiplexer_new(session) ⇒ Object
200
201
202
203
204
205
206
207
|
# File 'lib/utils/config_file.rb', line 200
def multiplexer_new(session)
case @multiplexer
when 'screen'
'false'
when 'tmux'
'tmux -u new -s "%s"' % session
end
end
|
#terminal_multiplexer=(terminal_multiplexer) ⇒ Object
185
186
187
188
189
|
# File 'lib/utils/config_file.rb', line 185
def terminal_multiplexer=(terminal_multiplexer)
@multiplexer = terminal_multiplexer.to_s
@multiplexer =~ /\A(screen|tmux)\z/ or
fail "invalid terminal_multiplexer #{terminal_multiplexer.inspect} was configured"
end
|