The code powering m.abunchtell.com https://m.abunchtell.com
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

15 wiersze
394 B

  1. # frozen_string_literal: true
  2. class UrlValidator < ActiveModel::EachValidator
  3. def validate_each(record, attribute, value)
  4. record.errors.add(attribute, I18n.t('applications.invalid_url')) unless compliant?(value)
  5. end
  6. private
  7. def compliant?(url)
  8. parsed_url = Addressable::URI.parse(url)
  9. parsed_url && %w(http https).include?(parsed_url.scheme) && parsed_url.host
  10. end
  11. end