On Sun, Jun 14, 2009 at 7:04 PM, Sue Lee <[email protected]>wrote:
> > Conrad Taylor wrote: > > Sue, try doing the following Rubygems: > > > > sudo gem update --system > > > > Furthermore, you should install all your gems using the following: > > > > sudo gem install <name-of-the-gem> > > > > Good luck, > > > > -Conrad > > > > Sent from my iPhone > > > > On Jun 14, 2009, at 2:17 PM, Sue Lee <rails-mailing-l...@andreas- > > Thanks for answering. > Which Gem would I need to install if Webrick isn't working? > > > Macintosh:~ sue$ sudo gem update --system > Updating RubyGems > Nothing to update > Macintosh:~ sue$ cd Desktop > Macintosh:Desktop sue$ cd rails_projects > Macintosh:rails_projects sue$ rails contactlist > exists > exists app/controllers > exists app/helpers > exists app/models > exists app/views/layouts > exists config/environments > exists config/initializers > exists config/locales > exists db > exists doc > exists lib > exists lib/tasks > exists log > exists public/images > exists public/javascripts > exists public/stylesheets > exists script/performance > exists test/fixtures > exists test/functional > exists test/integration > exists test/performance > exists test/unit > exists vendor > exists vendor/plugins > exists tmp/sessions > exists tmp/sockets > exists tmp/cache > exists tmp/pids > identical Rakefile > identical README > identical app/controllers/application_controller.r... > identical app/helpers/application_helper.rb > identical config/database.yml > identical config/routes.rb > identical config/locales/en.yml > identical config/initializers/backtrace_silencers.... > identical config/initializers/inflections.rb > identical config/initializers/mime_types.rb > identical config/initializers/new_rails_defaults.r... > overwrite config/initializers/session_store.rb? (enter "h" for help) > [Ynaqdh] Y > force config/initializers/session_store.rb > identical config/environment.rb > identical config/boot.rb > identical config/environments/production.rb > identical config/environments/development.rb > identical config/environments/test.rb > identical script/about > identical script/console > identical script/dbconsole > identical script/destroy > identical script/generate > identical script/runner > identical script/server > identical script/plugin > identical script/performance/benchmarker > identical script/performance/profiler > identical test/test_helper.rb > identical test/performance/browsing_test.rb > identical public/404.html > identical public/422.html > identical public/500.html > identical public/index.html > identical public/favicon.ico > identical public/robots.txt > identical public/images/rails.png > identical public/javascripts/prototype.js > identical public/javascripts/effects.js > identical public/javascripts/dragdrop.js > identical public/javascripts/controls.js > identical public/javascripts/application.js > identical doc/README_FOR_APP > identical log/server.log > identical log/production.log > identical log/development.log > identical log/test.log > Macintosh:rails_projects sue$ cd contactlist > Macintosh:contactlist sue$ ruby script/server Webrick > Rails requires RubyGems >= . Please install RubyGems and try again: > http://rubygems.rubyforge.org > -- > Posted via http://www.ruby-forum.com/. > Sue, Webrick should have been installed with the Ruby installation. Also, you should be able to do the following: cd contactlist ruby script/server webrick Note: The 'w' in Webrick above should be in lower case when invoking on the command line. Good luck, -Conrad --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

