X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/fd484b33a3920e0031007c5c2f1dec61913cbab5..34fe63727a8929d7e9c529feee1f0c1e827acdfa:/config/environment.rb diff --git a/config/environment.rb b/config/environment.rb index dcc9fad..6edda72 100644 --- a/config/environment.rb +++ b/config/environment.rb @@ -50,18 +50,39 @@ end # inflect.uncountable %w( fish sheep ) # end -MAIL_CONFIG = { :from => 'VotingBooth '} +MAIL_CONFIG = { :from => 'HyperChad '} # Include your application configuration below require 'uniq_token' 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("") + 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