How to get Sinatra to auto-reload the file after each change?

后端 未结 9 452
梦谈多话
梦谈多话 2020-12-07 09:39

I am using

# my_app.rb
load \'index.rb\'

and start the sever like this

ruby my_app.rb

but it never relo

9条回答
  •  离开以前
    2020-12-07 10:02

    I like the Shotgun gem. If you're using a modular Sinatra app and have a config.ru file it's easy to run.

    shotgun config.ru
    

    Check the gem out here. It's fairly straight forward and no configuration needed.

提交回复
热议问题