In the book "Haskell and Yesod" written:
Routes are defined in config/routes, and entities in config/models. They have the exact same syntax as the quasiquoting you've seen throughout the book, and yesod devel knows to automatically recompile the appropriate modules when these files change.
But when i change the file "Root.hs" happens nothing! On the console, there is no error, the site also there is no change. Only when the server restarts, the changes take effect. My environment: GHC version: 7.4.1 Yesod version: 0.10.2.1 OS: Ubuntu 12.04
Run site so: yesod devel.
Notes:
- Root.hs - this is realization of handler rootR.
- with forced restart the server, all changes take effect
- in Windows 7 automatic recompilation works fine, but under Ubuntu 12.04 does not work
What could be the reason?