Sha256: dc5b71c12933a68f47ce1da3272749813682d45e0c051dfa4041795e30c0be61

Contents?: true

Size: 624 Bytes

Versions: 3

Compression:

Stored size: 624 Bytes

Contents

class HostNameValidator < ActiveModel::EachValidator
  def validate_each(record, attribute, value)
    key = :"activerecord.errors.models.#{record.class.name.downcase}.attributes.#{attribute.to_s}.invalid"
    record.errors[attribute] << I18n.t(key, :default => :"activerecord.errors.messages.invalid") unless ValidatesHost::HostName.new(value).valid?
  end
end

module ValidatesHost
  class HostName
    def initialize(host_name)
      @host_name = host_name
    end

    def valid?
      return true if @host_name.blank?
      @host_name =~ /^[a-z][a-z0-9-]+$/
    end

    def host_name
      @host_name
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
validates_host-0.3.1 lib/validates_host/host_name_validator.rb
validates_host-0.3.0 lib/validates_host/host_name_validator.rb
validates_host-0.2.0 lib/validates_host/host_name_validator.rb