Sha256: 686a6047c83193be3f8d30b863c76357d3eb2149f0afbeda39f3581e3e1ae739
Contents?: true
Size: 314 Bytes
Versions: 4
Compression:
Stored size: 314 Bytes
Contents
# frozen_string_literal: true module ProxyRb # Fetch password for user... module PasswordFetchers # ... process environment class BasicPasswordFetcher def call(_user_name) raise NotImplementedError, 'You need to implement `#call` for a valid password fetcher' end end end end
Version data entries
4 entries across 4 versions & 1 rubygems