Just Another Victim of the Ambient Morality wrote: > This fails with the follow error message: > > > require 'Enumerable' > > > c:/Program > Files/Ruby/lib/ruby/site_ruby/1.8/rubygems.custom_require.rb:18:in > 'require__': No such file to load -- Enumberable (LoadError) > from c:/Program > Files/Ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:18:in 'require' > from D:/temp/rubyfile.rb > > > So, what's up with that? I though Ruby came with Enumerable? What am I > doing wrong? > Thanks... You're looking too hard. :) It's not in a file, it's a module that's part of the core. class MyClass include Enumerable # ... end Cheers, Hal