module Stomp # Container class for frames, misnamed technically class Message attr_accessor :headers, :body, :command def initialize yield(self) if block_given? end def to_s "" end end end