سؤال

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