On the Redmine plugin, whenever I do some changes and save it, it requires a restart to showcase the changes. Particularly I'm working right now on init.rb which shows the effects on localhost:9292/admin/plugins.
How can I change it to whenever I save some changes it will show the results simultaneously?
I've added some code in environment.rb but still it doesn't work.
config/environment.rb
config.reload_plugins = true
You cannot change this behavior. From the Redmine Plugin Tutorial documentation:
For situations such as this it is possible to use Guard to trigger an automatic restart of the server when changes to that file are detected. There is no specific Guard plugin for Redmine however guard-rails can likely be configured to perform this action for you.