Sha256: 09352dbaee6d51305901f22fcbaeef41031e6a3f08f10e53b0d1eeda7c6034a4
Contents?: true
Size: 375 Bytes
Versions: 13
Compression:
Stored size: 375 Bytes
Contents
module Cashstar # @private module Authentication private # Authentication hash # # @return [Hash] def authentication { :username => username, :password => password, } end # Check whether user is authenticated # # @return [Boolean] def authenticated? authentication.values.all? end end end
Version data entries
13 entries across 13 versions & 2 rubygems