pkieltyka (owner)

Revisions

gist: 217756 Download_button fork
public
Public Clone URL: git://gist.github.com/217756.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module MyLib
  class Controller
    def self.run
 
      EM::run do
// my code
end
 
end
end
end
 
// somewhere else in the lib .. in the startup part
MyLib::Controller.run