X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/607f3a343ea400e558cc47a7c6dc508f9bafcfd2..fc0a6a8d7ea15bcdb27ebdd58721401c7045c6e0:/config/environment.rb diff --git a/config/environment.rb b/config/environment.rb old mode 100644 new mode 100755 index 66e5c62..d97fd3b --- a/config/environment.rb +++ b/config/environment.rb @@ -36,7 +36,7 @@ Rails::Initializer.run do |config| # config.active_record.observers = :cacher, :garbage_collector # Make Active Record use UTC-base instead of local time - # config.active_record.default_timezone = :utc + config.active_record.default_timezone = :utc # See Rails::Configuration for more options end @@ -58,22 +58,35 @@ 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] + config :admin_email, MAIL_CONFIG[:from] + config :app_name, 'HyperChad' + config :changeable_fields, [] + config :use_email_notification, true + config :confirm_account, false end - Engines.start :login # action mailer configuration ActionMailer::Base.delivery_method = :sendmail ActionMailer::Base.default_charset = "utf-8" +