class Chordproko::Comment

Attributes

content[RW]

Public Class Methods

new(content) click to toggle source
# File lib/chordproko/comment.rb, line 7
def initialize content
  @content = content
end

Public Instance Methods

each(&block) click to toggle source
# File lib/chordproko/comment.rb, line 4
def each(&block)
     [self].each(&block)
end
to_s() click to toggle source
# File lib/chordproko/comment.rb, line 11
def to_s
  "#{@content}"
end