Elizabeth wrote:
> Thank you!  I come from Perl, so I kept thinking use lib.  I can
> probably look it up, but since you're here, is require 'app/models/*'
> possible?

No, you would have to do it yourself, e.g.

Dir["app/models/*.rb"].each do |f|
  require File.basename(f, ".rb")
end

> script/runner sounds like it will load a Ruby script using the rails
> environment variables?

Yes. If you have more detailed questions specifically about Rails 
features rather than about the Ruby programming language, they would be 
best asked on a Rails mailing list.

Regards,

Brian.
-- 
Posted via http://www.ruby-forum.com/.