a long variety of improvements and tweaks
[selectricity] / config / environment.rb
index 9eb4d577520bf0a0b9e88f03194f77398807d4ab..6edda72a170c04f10d6fbd262bb4386bd3921bf3 100644 (file)
@@ -50,7 +50,7 @@ end
 #   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'
@@ -58,20 +58,31 @@ require 'randarray'
 require 'rubyvote'
 
 class String
+  # alternate capitalization method that does not lowercase the rest of
+  # the string -- which is almost never what I want
   def capitalize
     if self.length <= 1
       self.upcase
     else
-      self.split(//)[0].upcase + self..split(//)[1..-1].join("")
+      self.split(//)[0].upcase + self.split(//)[1..-1].join("")
     end
   end
+
+  # capitalize each word in a string unless it is specialcased word
+  def titlecase
+    words = %w{a the in to for an}
+    self.split.collect {|s| words.include?(s) ? s : s.capitalize }.join(" ")
+  end
 end
 
 module LoginEngine
   config :salt, "voothingboat"
   config :email_from, MAIL_CONFIG[:from]
-end
-
+  config :admin_email, MAIL_CONFIG[:from]
+  config :app_name, 'HyperChad'
+  config :changeable_fields, []
+  config :use_email_notification, true
+  config :confirm_account, false
 Engines.start :login
 
 # action mailer configuration

Benjamin Mako Hill || Want to submit a patch?