class Rmwiki::ExtendedWikiPage
Attributes
comments[R]
text[R]
Public Class Methods
new(raw_obj)
click to toggle source
Calls superclass method
Rmwiki::SimpleWikiPage::new
# File lib/rmwiki.rb, line 30 def initialize(raw_obj) super(raw_obj) @text = raw_obj['text'] @author_id = raw_obj['author']['id'] @author_name = raw_obj['author']['name'] @comments = raw_obj['comments'] end