Sha256: 0cdbe56bde3a3f881925fda8ce3d04c6e8f0420737599d3b5b2d0f1df505aa74
Contents?: true
Size: 332 Bytes
Versions: 21
Compression:
Stored size: 332 Bytes
Contents
# frozen_string_literal: true module Shimmer module Form class PasswordField < Field self.type = :password class << self def can_handle?(method) method.to_s.end_with?("password") end end def render builder.password_field method, options end end end end
Version data entries
21 entries across 21 versions & 1 rubygems