From: "E. Saynatkari" Date: 2006-03-11T03:44:18+09:00 Subject: Re: problem with date and date/format unknown wrote: > i've a RubyCocoa app, working well on my computer, but this app crashed > on another one the error message being : > > /Applications/BookmarksMerge.app/Contents/Resources/ThirdParty/date/ > format.rb:6: Date is not a class (TypeError) > from > /Applications/BookmarksMerge.app/Contents/Resources/ThirdParty/ > date.rb:197 > from > /Applications/BookmarksMerge.app/Contents/Resources/rb_main.rb:43 > > the line 43 in my rb_main.rb being : > > require 'date' > > line 6 of format.rb being simply : > > class Date > > > and line 197 of date.rb : > > require 'date/format' > > > how this could work on one computer and not on another ??? That error message would be caused by something like this: module Date end class Date end However, Date being a standard class and hence loaded at startup, I am not quite sure how this would occur. Perhaps grep for another definition? E -- Posted via http://www.ruby-forum.com/.