I am complete new to Ruby on Rails, with great difficulty I have installed the software on my Windows 8 machine. Now I am just following this guide to create a sample Hello
Although the above solution works (from Gaurav Gupta), the better one would be to downgrade the version of 'coffee-script-source'
to v1.8.0 because the problem comes from the version 1.9.0
and over:
Add in blog/GemFile the coffee-script-source v1.8.0 (v1.9.0 does not work on Windows)
#For Windows it works with CofferScript v1.8
gem 'coffee-script-source', '1.8.0'
Then stop the server (if it was running) and do:
bundle update coffee-script-source
It should now be working fine.
Replacing the "application"
by "default"
in blog\app\views\layouts\application.html.erb line 5 and 6 will prevent to load extra files (resulting in CSS and javascript files not used in the page).
In your /app/views/layouts/application.html.erb line 5 and 6, change the first parameter application to default.