class Rspec::Bash::RubyStubMarshaller

Public Instance Methods

marshal(object_to_marshal) click to toggle source
# File lib/rspec/bash/server/ruby_stub_marshaller.rb, line 8
def marshal(object_to_marshal)
  Marshal.dump(object_to_marshal)
end
unmarshal(message_to_unmarshal) click to toggle source
# File lib/rspec/bash/server/ruby_stub_marshaller.rb, line 4
def unmarshal(message_to_unmarshal)
  Marshal.load(message_to_unmarshal)
end