-
-module LoginEngine
- config :salt, "voothingboat"
- config :email_from, MAIL_CONFIG[:from]
+require 'gruff'
+
+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("")
+ 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