module SimpleMobileOauth::Authenticator::ClassMethods

Public Instance Methods

build_user(&block) click to toggle source
# File lib/simple_mobile_oauth/authenticator.rb, line 57
def build_user(&block)
  define_method(:_build_user_strategy, &block)
end
find_identity(&block) click to toggle source
# File lib/simple_mobile_oauth/authenticator.rb, line 49
def find_identity(&block)
  define_method(:_find_identity_strategy, &block)
end
find_user(&block) click to toggle source
# File lib/simple_mobile_oauth/authenticator.rb, line 53
def find_user(&block)
  define_method(:_find_user_strategy, &block)
end