Top Level Namespace
Defined Under Namespace
Modules: BrowserAppBase Classes: AppMainBase, MyApp, Search, WsServer
Instance Method Summary collapse
-
#get_unused_port ⇒ Object
空きポートを取得.
Instance Method Details
#get_unused_port ⇒ Object
空きポートを取得
13 14 15 16 17 18 |
# File 'lib/template/start.rb', line 13 def get_unused_port s = TCPServer.open(0) port = s.addr[1] s.close return port end |