Created
March 16, 2011 20:53
-
-
Save hidenowt/873277 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<head> | |
<!-- bem quando eu uso dessa forma meu layout o sinatra da um erro em: @texto.conteudo --> | |
<!-- mas quando eu retiro o @texto.conteudo o codigo de exemplo funciona todo perfeitamente --> | |
<title><%= @texto.conteudo || "My Texts!" %></title> | |
</head> | |
<body> | |
Text:<br /> | |
<%= yield %> | |
</body> | |
</html> | |
__ERRO__ | |
/home/herminio/caelum/textos/views/layout.erb in evaluate_source | |
<title><%= @texto.conteudo || "My Texts!" %></title> | |
sinatra.error | |
#<NoMethodError: undefined method `conteudo' for nil:NilClass> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment