Sha256: 4af1bfdd035993f90b04f8672e429e7b6ef8e45327bd953d2607928bbddb921e
Contents?: true
Size: 370 Bytes
Versions: 5
Compression:
Stored size: 370 Bytes
Contents
module FaaStRuby module Command module Account PASSWORD_REGEX = /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[@$!%*?&])[A-Za-z\d@$!%*?&]{8,50}$/ EMAIL_REGEX = /\A[a-z0-9\-\.+]+@[a-z\d\-]+(\.[a-z]+)*\.[a-z]+\z/i require 'faastruby/user' require 'faastruby/cli/new_credentials' class AccountBaseCommand < BaseCommand end end end end
Version data entries
5 entries across 5 versions & 1 rubygems