Sha256: 92a4aa2001654ee0c588d178b1794e65d9e2ae5a2615eaec21873b36942e7afc

Contents?: true

Size: 774 Bytes

Versions: 1

Compression:

Stored size: 774 Bytes

Contents

# "name" : "Barack Obama",
# "url" : "http://twitter.com/barackobama",
# "type" : "twitter",
# "nick" : "barackobama",
# "description" : "44th President of the United States",
# "topsy_author_url" : "http://topsy.com/twitter/barackobama",
# "influence_level" : "5"
module Otter

  class Author < Base

    def name
      self.data['name']
    end

    def type
      self.data['type']
    end

    def nick
      self.data['nick']
    end

    def description
      self.data['description']
    end

    def topsy_author_url
      self.data['topsy_author_url']
    end

    def influence_level
      self.data['influence_level']
    end

    def topsy_author_url
      self.data['topsy_author_url']
    end

    def photo_url
      self.data['photo_url']
    end
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
otter-rb-0.0.1 lib/otter/author.rb