Sha256: a63f8eb5f376c629b4246562cdef096c93347c699d90c0ed9db27d16128a1413
Contents?: true
Size: 469 Bytes
Versions: 24
Compression:
Stored size: 469 Bytes
Contents
# frozen_string_literal: true # ProxyRb module ProxyRb # User Passwords module UserPasswords # Be a password return from vault class VaultUserPassword include Contracts::Core include Contracts::Builtin protected attr_reader :response public def initialize(response) @response = response.data end Contract None => String def to_s response[:password].to_s end end end end
Version data entries
24 entries across 24 versions & 1 rubygems