Don't need this anymore

dev
Andy Meneely 2014-11-18 01:55:00 -05:00
parent 99ac612b8a
commit 069f8edb02
2 changed files with 0 additions and 15 deletions

View File

@ -1,13 +0,0 @@
class MethodLogProxy
def initialize(strio, client)
@strio = strio
@client = client
end
# Any method called on the client will just be logged and passed through
def method_missing(m, *args, &block)
@strio << "#{method}(#{args})\n"
client.send(m,args)
end
end

View File

@ -1,8 +1,6 @@
require 'spec_helper'
require 'squib'
require 'pp'
require 'method_log_proxy'
describe Squib do