Roman Snitko wrote: > Yeah, thanks, I think I'm getting it. > > The story is, I have an .rhtml file, that requires another .rb file. > I read, of course, that ruby 'requires' file only once, but i thought > this statement takes action only during current let's call it "page > loading", not during the whole session. > > Will replacing 'require' with 'load' fix this? > I'm pretty sure it will. Note that you will probably have to add ".rb" to the end of the file, e.g., load "myfile.rb" instead of require "myfile" -Justin