class Tryouts::Drill::Dream

def inline(val=nil)

Takes a String +val+ and splits the lines into an Array.
def inline(val=nil)
  lines = (val.split($/) || [])
  lines.shift if lines.first.strip == ""
  lines.pop if lines.last.strip == ""
  lines
end