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