module NewRelic::LocalEnvironment::Camping

Public Instance Methods

discover_dispatcher() click to toggle source
# File lib/rpm_contrib/detection/camping.rb, line 15
def discover_dispatcher
  super
  if defined?(::Camping) && @dispatcher.nil?
    @dispatcher = 'camping'
  end
end
discover_framework() click to toggle source
# File lib/rpm_contrib/detection/camping.rb, line 7
def discover_framework
  if defined?(::Camping)
    puts "framework is camping"
    @framework = 'camping'
  else
    super
  end
end