# inflect.uncountable %w( fish sheep )
# end
-MAIL_CONFIG = { :from => 'VotingBooth <info@votingbooth.mako.cc>'}
+MAIL_CONFIG = { :from => 'HyperChad <info@hyperchad.media.mit.edu>'}
# Include your application configuration below
require 'uniq_token'
require 'randarray'
require 'rubyvote'
+class String
+ def capitalize
+ if self.length <= 1
+ self.upcase
+ else
+ self.split(//)[0].upcase + self..split(//)[1..-1].join("")
+ end
+ end
+end
+
module LoginEngine
config :salt, "voothingboat"
config :email_from, MAIL_CONFIG[:from]