Вопрос

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?

Это было полезно?

Решение

Try to add = sign to your tag:

<h1> <%= page.title %> </h1>
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top