Class: Atatus::Spies::JSONSpy Private

Inherits:
Object
  • Object
show all
Defined in:
lib/atatus/spies/json.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Instance Method Details

#installObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/atatus/spies/json.rb', line 27

def install
  if defined?(::JSON)

    ::JSON.class_eval do
      include SpanHelpers
      span_class_method :parse, 'JSON#parse', 'json.parse'
      span_class_method :parse!, 'JSON#parse!', 'json.parse'
      span_class_method :generate, 'JSON#generate', 'json.generate'
    end

  end
end