Skip to content

Instantly share code, notes, and snippets.

@hidenowt
Created March 16, 2011 20:53
Show Gist options
  • Save hidenowt/873277 to your computer and use it in GitHub Desktop.
Save hidenowt/873277 to your computer and use it in GitHub Desktop.
<!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