class Rundown::Words

Attributes

text[RW]

Public Class Methods

new(text) click to toggle source
# File lib/rundown/words.rb, line 5
def initialize(text)
  @text = text
  __setobj__(text.split(" "))
end