Class: Datadog::Contrib::Grape::Integration
- Inherits:
-
Object
- Object
- Datadog::Contrib::Grape::Integration
- Includes:
- Integration
- Defined in:
- lib/ddtrace/contrib/grape/integration.rb
Overview
Description of Grape integration
Constant Summary collapse
- MINIMUM_VERSION =
Gem::Version.new('1.0')
Class Method Summary collapse
Instance Method Summary collapse
Methods included from Integration
Class Method Details
.compatible? ⇒ Boolean
25 26 27 |
# File 'lib/ddtrace/contrib/grape/integration.rb', line 25 def self.compatible? super && version >= MINIMUM_VERSION end |
.loaded? ⇒ Boolean
20 21 22 23 |
# File 'lib/ddtrace/contrib/grape/integration.rb', line 20 def self.loaded? !defined?(::Grape).nil? \ && !defined?(::ActiveSupport::Notifications).nil? end |
.version ⇒ Object
16 17 18 |
# File 'lib/ddtrace/contrib/grape/integration.rb', line 16 def self.version Gem.loaded_specs['grape'] && Gem.loaded_specs['grape'].version end |
Instance Method Details
#default_configuration ⇒ Object
29 30 31 |
# File 'lib/ddtrace/contrib/grape/integration.rb', line 29 def default_configuration Configuration::Settings.new end |
#patcher ⇒ Object
33 34 35 |
# File 'lib/ddtrace/contrib/grape/integration.rb', line 33 def patcher Patcher end |