class Acme::Smileage::Blog::Entry::Body

Attributes

comments[RW]
next_entry_link[RW]
prev_entry_link[RW]
text[RW]

Public Class Methods

new() { |self| ... } click to toggle source
# File lib/acme/smileage/blog/entry.rb, line 31
def initialize
  self.image_links = []
  self.comments = []
  yield self if block_given?
end