On Dec 26, 2011, at 5:16 PM, ari g. wrote: > Hi there, > > I hope my subject is ok. Basically, I was working on an app a few years > ago (say, spring of 2008) and want to start working on it again. > > I checked out the lastest version of the code from rubyforge, got mysql, > updated rails and ruby (or so I think) and when I went to run > script/server I got: > > `gem_original_require': no such file to load > > I've looked through code and searched everywhere but haven't found > anything that helps me understand what's going on. I'm going to keep > looking but thought I'd post in case someone's got a clue (thanks!). > > Thanks a pile ahead of time..
I'm guessing one or more of the gems used in this application aren't in your current gem environment. If you type gem env you will see where they are expected to live, and if you type gem list, you will see a list of all the gems that are actually installed. Since this app is from pre-Bundler days, you're going to have to dig out a list of all the gems (and versions) your application depends on and install them manually. Or, follow the directions at the bundler site for adding bundler to an older Rails application. http://gembundler.com/rails23.html That way you'll get modern dependency magick and your task will be vastly simplified. Walter > > ~ari > > -- > Posted via http://www.ruby-forum.com/. > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

