When you run Rails from RiS, the file webrick_service.rb is run (you can alter this in the project properties).
By default, the file looks like this:
require 'fileutils'
RAILS_ROOT = FileUtils::pwd()
puts "Running WEBrick service ..."
puts ("RAILS_ROOT: #{RAILS_ROOT}")
#require RAILS_ROOT + '/config/boot'
APP_PATH = RAILS_ROOT + '/config/application'
require 'rails/commands'
Try uncommenting the
#require RAILS_ROOT + '/config/boot'
line.
This is commented out because there was a problem in earlier versions of Rails and the 'boot' mechanism didn't work correctly from what I remember. You can replace the whole file if you want.
webrick_service.rb is in (for me) 'C:\ProgramData\SapphireSteel Software\Ruby In Steel 2010\Scripts'
Dermot