namespaces in ruby - question about 2 classes with the same name

I have a report model class in app/models/report.rb. I also have a report class in the lib directory which is inside a namespace ChipIn::Reports. I am trying to access the app/models report class from within the Chipin::Reports namespace in the lib folder. Is this possible?

Thanks Andy

Try ::Reports. That should knock you out to the global namespace and get what you want.

Jason

Thank you, putting :: before the class worked perfectly.