Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 7th, 2012  |  syntax: None  |  size: 0.33 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ## layouts/applications html
  2.  
  3.         <header>
  4.                 <% if (yield :page_h1).to_s.blank? -%>
  5.                         <h1><%= "list projects" %></h1>
  6.                 <% else -%>
  7.                         <h1><%= yield :page_h1 %></h1>
  8.                 <% end -%>
  9.         </header>
  10.  
  11.  
  12. ## views/projects
  13.  
  14. <% page_h1 "hello" %>
  15.  
  16.  
  17. ## output :
  18.  
  19. undefined method `page_h1' for #<#<Class:0x000001031c1570>:0x000001031b7b38>