OK,
I installed haml gem in the .gems directory and then added the lines to environment.rb as you recommended...but still same error that index.html.erb file can't be found
my environment.rb
ENV['RAILS_ENV'] ||= 'production'
# Specifies gem version of Rails to use when vendor/rails is not present
RAILS_GEM_VERSION = '2.1.0' 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|
config.action_controller.session = {
:session_key => '_neues_licht_session',
:secret => '28d8a8dbdb9144887618ed88cde0141b4fc33f6d682c783c937737ca61c4ca571c2b0bb46e7f57affc70d43b0af65cc490e230bde4105e715ccef1356b733e80'
}
end
require 'rubygems'
gem 'haml'
ActionController::AbstractRequest.relative_url_root = "/neueslicht"
2008-09-12 04:33 AM