Module: NewRelic::LocalEnvironment::Camping
- Defined in:
- lib/rpm_contrib/detection/camping.rb
Overview
:nodoc:
Instance Method Summary collapse
Instance Method Details
#discover_dispatcher ⇒ Object
15 16 17 18 19 20 |
# File 'lib/rpm_contrib/detection/camping.rb', line 15 def discover_dispatcher super if defined?(::Camping) && @dispatcher.nil? @dispatcher = 'camping' end end |
#discover_framework ⇒ Object
7 8 9 10 11 12 13 14 |
# 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 |