I need to install rails on my system for a class project. I have ruby 1.8.2-14 installed and am entering at the command prompt >gem install rails --remote According to Curt Hibbs installation, I should get a series of questions to answer yes to, and then info on the installation. All I am getting is... Successfully installed rails_analyzer_tools, version 1.1.0 Installing RDoc documentation for rails_analyzer_tools-1.1.0... Any help would be greatly appreciated. -- Posted via http://www.ruby-forum.com/.
Try the following - it should automatically download all the required dependencies: gem install rails --include-dependencies On Wed, 01 Mar 2006 19:43:25 -0800, Guest <scottkib@bellsouth.net> wrote:> I need to install rails on my system for a class project. I have ruby > 1.8.2-14 installed and am entering at the command prompt >gem install > rails --remote > > According to Curt Hibbs installation, I should get a series of questions > to answer yes to, and then info on the installation. > > All I am getting is... > Successfully installed rails_analyzer_tools, version 1.1.0 > Installing RDoc documentation for rails_analyzer_tools-1.1.0... > > Any help would be greatly appreciated. >
The problem is that you have an outdated version of rubygems. Upgrade to the latest, then rinse, repeat. -Sean On Mar 1, 2006, at 8:55 PM, Bryan Rieger wrote:> Try the following - it should automatically download all the > required dependencies: > > gem install rails --include-dependencies > > On Wed, 01 Mar 2006 19:43:25 -0800, Guest <scottkib@bellsouth.net> > wrote: > >> I need to install rails on my system for a class project. I have >> ruby >> 1.8.2-14 installed and am entering at the command prompt >gem install >> rails --remote >> >> According to Curt Hibbs installation, I should get a series of >> questions >> to answer yes to, and then info on the installation. >> >> All I am getting is... >> Successfully installed rails_analyzer_tools, version 1.1.0 >> Installing RDoc documentation for rails_analyzer_tools-1.1.0... >> >> Any help would be greatly appreciated. >> > > > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails
I have tried that. I get.. ERROR: While executing gem ... (OptionParser::InvalidOption) invalid option: --include-dependencies -- Posted via http://www.ruby-forum.com/.
A simple option is to just download Instant Rails and run it from there. No installation required; just unzip into a directory and run it. It''s about as simple as an installation can get... It contains several of the commonly used gems; at the very least, it''ll get you going while you try to sort out the problem you''ve got. Regards Dave M. On 02/03/06, Guest <scottkib@bellsouth.net> wrote:> I have tried that. I get.. > > ERROR: While executing gem ... (OptionParser::InvalidOption) > invalid option: --include-dependencies > > > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >