Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ruby on Rails: why do i get message for javascript and css after rails s?

rails s=>

Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-11 03:37:03 -0900
Served asset /application.css - 304 Not Modified (0ms)


Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2011-10-11 03:37:03 -0900
Served asset /home.css - 304 Not Modified (0ms)


Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-11 03:37:03 -0900
Served asset /jquery_ujs.js - 304 Not Modified (0ms)


Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-11 03:37:03 -0900
Served asset /jquery.js - 304 Not Modified (0ms)


Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2011-10-11 03:37:03 -0900
Served asset /home.js - 304 Not Modified (0ms)


Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-11 03:37:03 -0900
Served asset /application.js - 304 Not Modified (0ms)

I get these message every time when page reloads.

How can i get rid of this message?

like image 948
shibly Avatar asked Oct 11 '11 06:10

shibly


2 Answers

As DGM indicated, I was able to suppress most of these messages via modification to the development.rb file, specifically changing:

config.assets.debug = true

to

config.assets.debug = false
like image 122
Christian Avatar answered Nov 15 '22 22:11

Christian


In development mode, it does not cache javascript or css, but rather reloads it on every call so you can see changes made.

You could either run another environment:

RAILS_ENV=production rails s

or set the config line in config/environments/development.rb

config.action_controller.perform_caching = true
like image 37
DGM Avatar answered Nov 15 '22 21:11

DGM