+6
app/firehose_stream.rb
+6
app/firehose_stream.rb
···
181
181
puts e.backtrace.reject { |x| x.include?('/ruby/') }
182
182
end
183
183
end
184
+
185
+
def inspect
186
+
vars = instance_variables - [:@feeds, :@timer]
187
+
values = vars.map { |v| "#{v}=#{instance_variable_get(v).inspect}" }.join(", ")
188
+
"#<#{self.class}:0x#{object_id} #{values}>"
189
+
end
184
190
end