class IdPlease::Validator

Public Class Methods

check(id, country) click to toggle source
# File lib/id-please/validator.rb, line 5
def self.check id, country
  Object.const_get("IdPlease::#{country.upcase}::Validator").new.check(id)
end