How to run a simple ruby script in any web server (Apache or Mongrel or any thing else)

前端 未结 7 996
半阙折子戏
半阙折子戏 2021-02-05 06:20

It seems very funny to me that when I search something related ruby, all ruby on rails related results popped up. So nobody using raw ruby anymore?

However, I am new to

7条回答
  •  甜味超标
    2021-02-05 07:01

    Run this from your app root.

    ruby -r webrick -e "s = WEBrick::HTTPServer.new(:Port => 8000, :DocumentRoot => Dir.pwd); trap('INT') { s.shutdown }; s.start"
    

提交回复
热议问题