class RbUMLNote

Public Class Methods

new(text) click to toggle source
# File lib/rbuml/models.rb, line 97
def initialize(text)
        @text = text
end

Public Instance Methods

dot_label() click to toggle source
# File lib/rbuml/dot.rb, line 105
def dot_label
        @text.split("\n").collect {|line| line.gsub("\t", '') }.join('\l') + '\l'
end