Skip to content

Instantly share code, notes, and snippets.

@marshluca
Created August 26, 2011 10:26
Show Gist options
  • Save marshluca/1173151 to your computer and use it in GitHub Desktop.
Save marshluca/1173151 to your computer and use it in GitHub Desktop.
Rails 3 PipeAssets
cache: [GET /intro] miss
Started GET "/intro" for 127.0.0.1 at Fri Aug 26 18:25:29 +0800 2011
Processing by HomeController#intro as HTML
==> Got Account:5343 from cache. (0.00065)
Rendered home/intro.html.erb within layouts/application (0.1ms)
Completed 200 OK in 233ms (Views: 4.1ms | ActiveRecord: 10.7ms | Mongo: 0.0ms | Sphinx: 0.0ms | Memcache: 0.0ms)
cache: [GET /assets/application-e808531739fb5e75ea9161663d738563.css] fresh
cache: [GET /assets/index-d16c1771b786ce3dc9730baa43e2fe87.css] fresh
cache: [GET /assets/index-9c748f0fcd599cad89d07851a3b0ab31.js] fresh
cache: [GET /assets/application-1a32af67ecc0fbff20816dbba0b52552.js] fresh
cache: [GET /images/head_bg.jpg] miss
cache: [GET /images/nav_bg.jpg] miss
cache: [GET /images/foot_bg.jpg] miss
Started GET "/assets/index_find.jpg" for 127.0.0.1 at Fri Aug 26 18:25:30 +0800 2011
cache: [GET /assets/index_find.jpg] stale, valid, store
Served asset /index_find.jpg - 304 Not Modified (0ms) (pid 5814)
Started GET "/assets/index_share.jpg" for 127.0.0.1 at Fri Aug 26 18:25:30 +0800 2011
cache: [GET /assets/index_share.jpg] stale, valid, store
Served asset /index_share.jpg - 304 Not Modified (0ms) (pid 5814)
Started GET "/assets/index_res.jpg" for 127.0.0.1 at Fri Aug 26 18:25:30 +0800 2011
cache: [GET /assets/index_res.jpg] stale, valid, store
Served asset /index_res.jpg - 304 Not Modified (0ms) (pid 5814)
Started GET "/assets/index_fr.jpg" for 127.0.0.1 at Fri Aug 26 18:25:30 +0800 2011
cache: [GET /assets/index_fr.jpg] stale, valid, store
Served asset /index_fr.jpg - 304 Not Modified (0ms) (pid 5814)
cache: [GET /intro] miss
Started GET "/intro" for 127.0.0.1 at Fri Aug 26 18:24:45 +0800 2011
Processing by HomeController#intro as HTML
==> Got Account:5343 from cache. (0.00143)
Rendered home/intro.html.erb within layouts/application (0.4ms)
Compiled ~/Code/Work/web/app/assets/stylesheets/application.css (1ms) (pid 5814)
Compiled ~/Code/Work/web/app/assets/stylesheets/index.css (0ms) (pid 5814)
Compiled ~/Code/Work/web/app/assets/stylesheets/application.css (0ms) (pid 5814)
Compiled ~/Code/Work/web/app/assets/stylesheets/index.css (0ms) (pid 5814)
Compiled ~/Code/Work/web/app/assets/javascripts/application.js (4ms) (pid 5814)
Compiled ~/Code/Work/web/vendor/bundle/ruby/1.8/gems/jquery-rails-1.0.12/vendor/assets/javascripts/jquery.js (3ms) (pid 5814)
Compiled ~/Code/Work/web/vendor/bundle/ruby/1.8/gems/jquery-rails-1.0.12/vendor/assets/javascripts/jquery_ujs.js (0ms) (pid 5814)
Compiled ~/Code/Work/web/app/assets/javascripts/index.js (0ms) (pid 5814)
Compiled ~/Code/Work/web/app/assets/javascripts/application.js (0ms) (pid 5814)
Compiled ~/Code/Work/web/app/assets/javascripts/index.js (0ms) (pid 5814)
Completed 200 OK in 424ms (Views: 45.6ms | ActiveRecord: 169.2ms | Mongo: 0.0ms | Sphinx: 0.0ms | Memcache: 0.0ms)
Started GET "/assets/index_res.jpg" for 127.0.0.1 at Fri Aug 26 18:24:45 +0800 2011
cache: [GET /assets/index_res.jpg] miss, store
Served asset /index_res.jpg - 200 OK (2ms) (pid 5814)
Started GET "/assets/index_fr.jpg" for 127.0.0.1 at Fri Aug 26 18:24:45 +0800 2011
cache: [GET /assets/index_fr.jpg] miss, store
Served asset /index_fr.jpg - 200 OK (1ms) (pid 5814)
Started GET "/assets/index_share.jpg" for 127.0.0.1 at Fri Aug 26 18:24:45 +0800 2011
cache: [GET /assets/index_share.jpg] miss, store
Served asset /index_share.jpg - 200 OK (1ms) (pid 5814)
Started GET "/assets/index_find.jpg" for 127.0.0.1 at Fri Aug 26 18:24:45 +0800 2011
cache: [GET /assets/index_find.jpg] miss, store
Served asset /index_find.jpg - 200 OK (1ms) (pid 5814)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment