X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/607f3a343ea400e558cc47a7c6dc508f9bafcfd2..5f51982916827b84d73bfa8f3a98a9ee1d48d3ce:/config/environment.rb diff --git a/config/environment.rb b/config/environment.rb index 66e5c62..7d3657e 100644 --- a/config/environment.rb +++ b/config/environment.rb @@ -5,17 +5,20 @@ # ENV['RAILS_ENV'] ||= 'production' # Specifies gem version of Rails to use when vendor/rails is not present -RAILS_GEM_VERSION = '1.1.6' +RAILS_GEM_VERSION = '1.2.3' unless defined? RAILS_GEM_VERSION # Bootstrap the Rails environment, frameworks, and default configuration require File.join(File.dirname(__FILE__), 'boot') Rails::Initializer.run do |config| - # Settings in config/environments/* take precedence those specified here + # Settings in config/environments/* take precedence over those specified here # Skip frameworks you're not going to use (only works if using vendor/rails) # config.frameworks -= [ :action_web_service, :action_mailer ] + # Only load the plugins named here, by default all plugins in vendor/plugins are loaded + # config.plugins = %W( exception_notification ssl_requirement ) + # Add additional load paths for your own custom dirs # config.load_paths += %W( #{RAILS_ROOT}/extras ) @@ -50,30 +53,37 @@ end # inflect.uncountable %w( fish sheep ) # end -MAIL_CONFIG = { :from => 'HyperChad '} +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf +# Mime::Type.register "application/x-mobile", :mobile # Include your application configuration below + +MAIL_CONFIG = { :from => 'Selectricity '} + 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("") + self.split(//)[0].upcase + self.split(//)[1..-1].join("") end end -end -module LoginEngine - config :salt, "voothingboat" - config :email_from, MAIL_CONFIG[:from] + # 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 -Engines.start :login - # action mailer configuration ActionMailer::Base.delivery_method = :sendmail ActionMailer::Base.default_charset = "utf-8" +