# File lib/authentication.rb, line 33 def make_token secure_digest(Time.now, (1..10).map{ rand.to_s }) end
# File lib/authentication.rb, line 29 def secure_digest(*args) Digest::SHA1.hexdigest(args.flatten.join('--')) end