Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. Rails.application.config.assets.precompile += %w( welcome.css )
  2. Rails.application.config.assets.precompile += %w( users.css )
  3.  
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <title>Blocmarks</title>
  8. <%= stylesheet_link_tag "welcome" %>
  9. <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
  10. <%= csrf_meta_tags %>
  11. </head>
  12. <body>
  13. <%= yield %>
  14. </body>
  15. </html>
  16.  
  17. <!DOCTYPE html>
  18. <html>
  19. <head>
  20. <title>Blocmarks</title>
  21. <%= stylesheet_link_tag 'users' %>
  22. <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
  23. <%= csrf_meta_tags %>
  24. </head>
  25. <body>
  26. <%= yield %>
  27. </body>
  28. </html>
  29.  
  30. Started GET "/" for 127.0.0.1 at 2014-10-25 13:04:11 -0500
  31. ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
  32. Processing by WelcomeController#index as HTML
  33. Rendered welcome/index.html.erb within layouts/welcome (13.0ms)
  34. Completed 200 OK in 471ms (Views: 446.7ms | ActiveRecord: 0.0ms)
  35.  
  36. Started GET "/users/sign_up" for 127.0.0.1 at 2014-10-25 13:04:57 -0500
  37. Processing by Devise::RegistrationsController#new as HTML
  38. Rendered devise/shared/_links.erb (2.7ms)
  39. Rendered devise/registrations/new.html.erb within layouts/devise (615.4ms)
  40. Completed 200 OK in 896ms (Views: 890.9ms | ActiveRecord: 0.9ms)
  41.  
  42. Started GET "/users/sign_up" for 127.0.0.1 at 2014-10-25 13:06:02 -0500
  43. Processing by Devise::RegistrationsController#new as HTML
  44. Rendered devise/shared/_links.erb (0.8ms)
  45. Rendered devise/registrations/new.html.erb within layouts/devise (7.4ms)
  46. Completed 200 OK in 308ms (Views: 306.3ms | ActiveRecord: 0.0ms)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement