Pergunta

I've installed the following Gem into my Gemfile. https://github.com/kenpratt/wikipedia-client

I've included the following code in my home.html.erb file (code for homepage)

<% require 'wikipedia' %>
<% page = Wikipedia.find('Getting Things Done') %>
<h1> <% page.title %> </h1>

but nothing shows up on my homepage. What could be going on?

Foi útil?

Solução

Try to add = sign to your tag:

<h1> <%= page.title %> </h1>
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top