Frage

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?

War es hilfreich?

Lösung

Try to add = sign to your tag:

<h1> <%= page.title %> </h1>
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top