Class: Stratagem::Instrumentation::Models::Authentication::Devise::Detect

Inherits:
Detect
  • Object
show all
Defined in:
lib/stratagem/instrumentation/models/authentication/devise/detect.rb

Class Method Summary collapse

Class Method Details

.supports?(model) ⇒ Boolean

Returns:

  • (Boolean)


3
4
5
6
7
8
9
# File 'lib/stratagem/instrumentation/models/authentication/devise/detect.rb', line 3

def self.supports?(model)
  begin
    model.ancestors.find {|a| a.name && a.name.include?('Devise::Models') } != nil
  rescue
    false
  end
end