Class: Cmdserver::Command
- Inherits:
-
Object
- Object
- Cmdserver::Command
- Defined in:
- lib/cmdserver.rb
Overview
}}}
Instance Method Summary collapse
- #call(client_socket, arg_string) ⇒ Object
-
#initialize ⇒ Command
constructor
Class provided for the possibilty of future extensibility# {{{.
Constructor Details
#initialize ⇒ Command
Class provided for the possibilty of future extensibility# {{{
51 52 |
# File 'lib/cmdserver.rb', line 51 def initialize end |
Instance Method Details
#call(client_socket, arg_string) ⇒ Object
54 55 56 |
# File 'lib/cmdserver.rb', line 54 def call(client_socket, arg_string) client_socket.puts "Dummy command call" end |