Sha256: 837bcdd571719585c6373ad39685cfba67666f9ad47358b82cd54092d62e3e6f
Contents?: true
Size: 451 Bytes
Versions: 15
Compression:
Stored size: 451 Bytes
Contents
module Authentication # A fake authentication system for use in a development environments. # This is ideal for cases where the productino environment uses some # complex authentication that cannot be simulated in the development # environment easily. class Bogus # Any password will authenticate. This is to encourage people # to not use this in the production environment. def authenticate(user, password); true end end end
Version data entries
15 entries across 15 versions & 2 rubygems