When i try to include
<%= stylesheet_link_tag \"application\" %>
<%= javascript_include_tag \"application\" %>
The content
Nazar Hussain's answer helped me. It depends on ruby version too. If you are using v.2 then try to downgrade to v.1.9. It is very easy if you are using rvm:
To install v.1.9.3 use:
$ rvm install 1.9.3
To use v.1.9.3 as default:
$ rvm --default use 1.9.3
Then
bundler gembundle installrake assets:clean RAILS_ENV=developmentrails sThat's all.