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

后端 未结 9 456
梦谈多话
梦谈多话 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 09:56

    If you only change your templates sinatra will always rerender them if you set your environment to development:

    ruby app.rb -e development
    

提交回复
热议问题