diff options
Diffstat (limited to 'config/environment.rb')
-rw-r--r-- | config/environment.rb | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/config/environment.rb b/config/environment.rb index 8a8ee91e3..627d30b31 100644 --- a/config/environment.rb +++ b/config/environment.rb @@ -6,7 +6,7 @@ # ENV['RAILS_ENV'] ||= 'production' # Specifies gem version of Rails to use when vendor/rails is not present -RAILS_GEM_VERSION = '2.3.2' unless defined? RAILS_GEM_VERSION +RAILS_GEM_VERSION = '2.3.11' unless defined? RAILS_GEM_VERSION # Bootstrap the Rails environment, frameworks, and default configuration require File.join(File.dirname(__FILE__), 'boot') @@ -20,6 +20,15 @@ $:.push(File.join(File.dirname(__FILE__), '../commonlib/rblib')) $:.unshift(File.join(File.dirname(__FILE__), '../vendor/ruby-ole/lib')) $:.unshift(File.join(File.dirname(__FILE__), '../vendor/ruby-msg/lib')) +# FIXME: These gems needed to be installed using 'sude gem install ...' - +# apt-get install does not seem to install them where they can be found: +# +# fcgi +# memcache-client +# mongrel +# thin + + require 'memcache' load "validate.rb" |