Hi, It seems a Gem dependency problem. First your Rubygems seems too new for 1.8.7 Ruby, it might be a problem (not sure).
Check if all versions of Gem dependencies for particular gems fit to run script/install. If you are on *nix try RVM if on Win try tik. With this you can manage your Ruby and Rubygems versions. I'm sure your first problem with running it will be installing all the right versions of the gems. Inoshi was not upgraded to RoR3 (as I know at least). Means you probably have gems which are not old versions. In README I see it needs mysql or pg gem (postgres) BlueCloth, rdiscount, image_magick. (I'm sure image_magick needs some additional libs on Ubuntu which are not gems and there must be something similar in other OSs) In config/environment.rb it says it uses Rails 2.2.2: RAILS_GEM_VERSION = '2.2.2' and it uses these 2 gems: config.gem 'chronic' config.gem 'BlueCloth', :lib => 'bluecloth' When you install gems with RVM never use sudo. To install specific version of a gem do this: 'gem install <gemname> -v=<version_number>" for example: "gem install rails -v=2.2.2" Good luck, Zoli 2011/3/20 econohead <[email protected]> > I am getting a similar msg to others when running script/install - > though everyone seems to be finding a solution without posting it; so > I need some help, please. > > Ruby 1.8.7 > Gems 1.6.2 > Rails 2.3.5 > > Error: > (in /Users/macusers/Sites/insoshi) > rake aborted! > undefined method `version_requirements' for #<Gem::Dependency: > 0x101d57440> > > -- > You received this message because you are subscribed to the Google Groups > "Insoshi" 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/insoshi?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Insoshi" 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/insoshi?hl=en.
