class Fourchan::Kit::Post

Post should make it easy to use OpenStruct for posts in a thread.

Also make it possible to get the link for the image, if the post has one.

Public Class Methods

new(hash, board) click to toggle source
Calls superclass method
# File lib/fourchan/kit/post.rb, line 10
def initialize(hash, board)
  super(hash)
  @board = board
end

Public Instance Methods