class Googling::Result

Attributes

description[R]
title[R]

Public Class Methods

new(attributes = {}) click to toggle source
# File lib/googling/result.rb, line 5
def initialize(attributes = {})
  @title = attributes[:title]
  @link = attributes[:link]
  @description = attributes[:description]
end