Method: Warren::MessageFilter.unpack

Defined in:
lib/warren/message_filter.rb

.unpack(msg) ⇒ Object

Runs the filtered message through all the filters and returns the raw version



64
65
66
67
68
69
70
# File 'lib/warren/message_filter.rb', line 64

def self.unpack msg
  @@filters.each do |f|
    # puts "Unpacking with #{f}"
    msg = f.unpack(msg)
  end
  msg
end