Class Topsy::UrlInfo
In: lib/rtopsy/url_info.rb
Parent: Object

Methods

new   to_s  

Attributes

description  [RW] 
description_attribution  [RW] 
oneforty  [RW] 
title  [RW] 
topsy_trackback_url  [RW] 
trackback_total  [RW] 
url  [RW] 

Public Class methods

[Source]

# File lib/rtopsy/url_info.rb, line 23
    def initialize(hash)
      hash.each do |key, value|
        instance_variable_set("@#{key}", value)
      end
    end

Public Instance methods

[Source]

# File lib/rtopsy/url_info.rb, line 19
    def to_s
      "Topsy UrlInfo: #{url}, @#{topsy_trackback_url}, #{trackback_total} total"
    end

[Validate]