Hi all I can''t install the mongrel_cluster gem: chraftbuech:~ josh$ sudo gem install --include-dependencies mongrel_cluster ERROR: While executing gem ... (Gem::GemNotFoundException) Could not find mongrel (>= 0.3.13.4) in any repository What''s wrong here? Please help. Thanks, Josh -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On May 1, 2007, at 4:34 PM, Joshua Muheim wrote:> I can''t install the mongrel_cluster gem: > > chraftbuech:~ josh$ sudo gem install --include-dependencies > mongrel_cluster > ERROR: While executing gem ... (Gem::GemNotFoundException) > Could not find mongrel (>= 0.3.13.4) in any repository > > What''s wrong here? Please help. Thanks, Joshwhat does ''gem list mongrel'' tell you? -faisal --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
chraftbuech:~ josh$ sudo gem install --include-dependencies mongrel_cluster ERROR: While executing gem ... (Gem::GemNotFoundException) Could not find mongrel (>= 0.3.13.4) in any repository chraftbuech:~ josh$ sudo gem install --include-dependencies mongrel_cluster Password: Need to update 19 gems from http://gems.rubyforge.org ................... complete ERROR: While executing gem ... (Gem::GemNotFoundException) Could not find mongrel (>= 0.3.13.4) in any repository chraftbuech:~ josh$ gem list mongrel *** LOCAL GEMS *** mongrel (0.3.3) A small fast HTTP library and server that runs Rails, Camping, and Nitro apps. chraftbuech:~ josh$ -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
I''m getting absolutely mad because of this! >:( chraftbuech:~ josh$ sudo gem install mongrel Building native extensions. This could take a while... Successfully installed mongrel-0.3.3 Installing ri documentation for mongrel-0.3.3... Installing RDoc documentation for mongrel-0.3.3... chraftbuech:~ josh$ sudo gem install mongrel_cluster Install required dependency mongrel? [Yn] Y ERROR: While executing gem ... (Gem::GemNotFoundException) Could not find mongrel (>= 0.3.13.4) in any repository chraftbuech:~ josh$ sudo gem install mongrel_cluster Install required dependency mongrel? [Yn] n ERROR: While executing gem ... (Gem::DependencyError) Required dependency mongrel not installed I don''t know what to do anymore.. Also unlinked the source_cache files, but didn''t help. Very, very frustrating. Funniest thing is that mongrel really IS installed and CAN BE installed, but gem just doesn''t seem to get this?! -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On May 2, 2007, at 5:32 PM, Joshua Muheim wrote:> > I''m getting absolutely mad because of this! >:( > > chraftbuech:~ josh$ sudo gem install mongrel > Building native extensions. This could take a while... > Successfully installed mongrel-0.3.3 > Installing ri documentation for mongrel-0.3.3... > Installing RDoc documentation for mongrel-0.3.3... > chraftbuech:~ josh$ sudo gem install mongrel_cluster > Install required dependency mongrel? [Yn] Y > ERROR: While executing gem ... (Gem::GemNotFoundException) > Could not find mongrel (>= 0.3.13.4) in any repository > chraftbuech:~ josh$ sudo gem install mongrel_cluster > Install required dependency mongrel? [Yn] n > ERROR: While executing gem ... (Gem::DependencyError) > Required dependency mongrel not installed > > I don''t know what to do anymore.. Also unlinked the source_cache > files, > but didn''t help. Very, very frustrating. Funniest thing is that > mongrel > really IS installed and CAN BE installed, but gem just doesn''t seem to > get this?!Perhaps you need to force the current version of mongrel to be installed: sudo gem install mongrel --version ''=1.0.1'' sudo gem install mongrel_cluster --version ''=0.2.1'' On one production system, I have: *** LOCAL GEMS *** mongrel (1.0.1) A small fast HTTP library and server that runs Rails, Camping, Nitro and Iowa apps. mongrel_cluster (0.2.1) Mongrel plugin that provides commands and Capistrano tasks for managing multiple Mongrel processes. On my local Mac OS X, I have: *** LOCAL GEMS *** mongrel (1.0.1, 0.3.13.4) A small fast HTTP library and server that runs Rails, Camping, Nitro and Iowa apps. (no mongrel_cluster on my laptop) I wonder if the 4-part 0.3.13.4 seems to be greater than the 3-part 1.0.1 and so the version dependency (>= 0.3.13.4) is failing. You might also need to update your gem command (sudo gem update -- system) or remove the local source_cache file (see the `gem env` output for the directory in which to find the source_cache) -Rob Rob Biedenharn http://agileconsultingllc.com Rob-xa9cJyRlE0mWcWVYNo9pwxS2lgjeYSpx@public.gmane.org --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
> You might also need to update your gem command (sudo gem update -- > system) or remove the local source_cache file (see the `gem env` > output for the directory in which to find the source_cache)I did that several times already. chraftbuech:~/Webwork/mongrelapp josh$ sudo gem install mongrel --version ''=1.0.1'' Password: Bulk updating Gem source index for: http://gems.rubyforge.org ERROR: While executing gem ... (Gem::GemNotFoundException) Could not find mongrel (= 1.0.1) in any repository chraftbuech:~/Webwork/mongrelapp josh$ It''s just frustrating, I''m hanging since 2 or 3 days with my work because of this stupid problem. -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On May 3, 2007, at 1:26 AM, Joshua Muheim wrote:> >> You might also need to update your gem command (sudo gem update -- >> system) or remove the local source_cache file (see the `gem env` >> output for the directory in which to find the source_cache) > I did that several times already. > > chraftbuech:~/Webwork/mongrelapp josh$ sudo gem install mongrel > --version ''=1.0.1'' > Password: > Bulk updating Gem source index for: http://gems.rubyforge.org > ERROR: While executing gem ... (Gem::GemNotFoundException) > Could not find mongrel (= 1.0.1) in any repository > chraftbuech:~/Webwork/mongrelapp josh$ > > It''s just frustrating, I''m hanging since 2 or 3 days with my work > because of this stupid problem.Did you remove the source_cache? What does your system produce for the command $ gem list mongrel --remote *** REMOTE GEMS *** Bulk updating Gem source index for: http://gems.rubyforge.org mongrel (1.0.1, 1.0, 0.3.13.4, 0.3.13.3, 0.3.13.2, 0.3.13.1, 0.3.13, 0.3.12.4, 0.3.12.3, 0.3.12.2, 0.3.12.1, 0.3.12, 0.3.11, 0.3.10.1, 0.3.10, 0.3.9, 0.3.8, 0.3.7.1, 0.3.7, 0.3.6, 0.3.5, 0.3.4, 0.3.3, 0.3.2, 0.3.1, 0.3, 0.2.2, 0.2.1, 0.2.0) A small fast HTTP library and server that runs Rails, Camping, Nitro and Iowa apps. mongrel_cluster (0.2.1, 0.2.0, 0.1.1, 0.1) Mongrel plugin that provides commands and Capistrano tasks for managing multiple Mongrel processes. mongrel_config (0.3, 0.2.1, 0.2) Mongrel plugin that gives you web based config tool using Camping mongrel_console (0.2) Provides a combined Mongrel and Rails IRB console. mongrel_in_a_tunnel (0.1) Mongrel/GemPlugin to decrypt to SSL mongrel_raw_output (0.2.2) The mongrel_raw_output GemPlugin for bypassing Mongrel''s headers mongrel_secure_download (0.1) Mongrel Secure Download Plugin mongrel_send_file (0.1) The mongrel_send_file GemPlugin mongrel_service (0.3.1, 0.1) Mongrel Native Win32 Service Plugin for Rails (debug build) mongrel_status (0.2.2, 0.2.1, 0.2, 0.1) A sample plugin that reports the status of mongrel. mongrel_upload_progress (0.2.1, 0.2, 0.1) The mongrel_upload_progress GemPlugin If you don''t get essentially the same list, there must be something going on between your system and the repository. -Rob Rob Biedenharn http://agileconsultingllc.com Rob-xa9cJyRlE0mWcWVYNo9pwxS2lgjeYSpx@public.gmane.org --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Last login: Wed May 2 23:16:02 on ttyp3 Welcome to Darwin! chraftbuech:~ josh$ gem list mongrel --remote *** REMOTE GEMS *** Bulk updating Gem source index for: http://gems.rubyforge.org chraftbuech:~ josh$ gem env RubyGems Environment: - VERSION: 0.9.2 (0.9.2) - INSTALLATION DIRECTORY: /usr/lib/ruby/gems/1.8 - GEM PATH: - /usr/lib/ruby/gems/1.8 - REMOTE SOURCES: - http://gems.rubyforge.org chraftbuech:~ josh$ sudo rm /usr/lib/ruby/gems/1.8/source_cache Password: chraftbuech:~ josh$ gem list mongrel --remote *** REMOTE GEMS *** Bulk updating Gem source index for: http://gems.rubyforge.org mongrel (1.0.1, 1.0, 0.3.13.4, 0.3.13.3, 0.3.13.2, 0.3.13.1, 0.3.13, 0.3.12.4, 0.3.12.3, 0.3.12.2, 0.3.12.1, 0.3.12, 0.3.11, 0.3.10.1, 0.3.10, 0.3.9, 0.3.8, 0.3.7.1, 0.3.7, 0.3.6, 0.3.5, 0.3.4, 0.3.3, 0.3.2, 0.3.1, 0.3, 0.2.2, 0.2.1, 0.2.0) A small fast HTTP library and server that runs Rails, Camping, Nitro and Iowa apps. mongrel_cluster (0.2.1, 0.2.0, 0.1.1, 0.1) Mongrel plugin that provides commands and Capistrano tasks for managing multiple Mongrel processes. mongrel_config (0.3, 0.2.1, 0.2) Mongrel plugin that gives you web based config tool using Camping mongrel_console (0.2) Provides a combined Mongrel and Rails IRB console. mongrel_in_a_tunnel (0.1) Mongrel/GemPlugin to decrypt to SSL mongrel_raw_output (0.2.2) The mongrel_raw_output GemPlugin for bypassing Mongrel''s headers mongrel_secure_download (0.1) Mongrel Secure Download Plugin mongrel_send_file (0.1) The mongrel_send_file GemPlugin mongrel_service (0.3.1, 0.1) Mongrel Native Win32 Service Plugin for Rails (debug build) mongrel_status (0.2.2, 0.2.1, 0.2, 0.1) A sample plugin that reports the status of mongrel. mongrel_upload_progress (0.2.1, 0.2, 0.1) The mongrel_upload_progress GemPlugin chraftbuech:~ josh$ sudo gem install mongel_cluster Bulk updating Gem source index for: http://gems.rubyforge.org ERROR: While executing gem ... (Gem::GemNotFoundException) Could not find mongel_cluster (> 0) in any repository chraftbuech:~ josh$ It''s ridiculous, isn''t it?! :-( -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On May 3, 2007, at 10:22 AM, Joshua Muheim wrote:> It''s ridiculous, isn''t it?! :-(Wow! It certainly is. You have my sympathy tracking this one down ''cause I don''t have any more suggestion. -Rob Rob Biedenharn http://agileconsultingllc.com Rob-xa9cJyRlE0mWcWVYNo9pwxS2lgjeYSpx@public.gmane.org --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Rob Biedenharn wrote:> On May 3, 2007, at 10:22 AM, Joshua Muheim wrote: >> It''s ridiculous, isn''t it?! :-( > > Wow! It certainly is. You have my sympathy tracking this one down > ''cause I don''t have any more suggestion. > > -Rob > > Rob Biedenharn http://agileconsultingllc.com > Rob-xa9cJyRlE0mWcWVYNo9pwxS2lgjeYSpx@public.gmane.orgThanks anyway... Maybe you''ve got an idea how to install the stuff without using the gem command? On a server I have mongrel and mongrel_cluster installed, so maybe I can copy the corresponding folders to my local machine somehow? -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Hi, I''ve got the same problem. Could you solve it? Greetings Johannes Joshua Muheim schrieb:> Rob Biedenharn wrote: > > On May 3, 2007, at 10:22 AM, Joshua Muheim wrote: > >> It''s ridiculous, isn''t it?! :-( > > > > Wow! It certainly is. You have my sympathy tracking this one down > > ''cause I don''t have any more suggestion. > > > > -Rob > > > > Rob Biedenharn http://agileconsultingllc.com > > Rob-xa9cJyRlE0mWcWVYNo9pwxS2lgjeYSpx@public.gmane.org > > Thanks anyway... Maybe you''ve got an idea how to install the stuff > without using the gem command? On a server I have mongrel and > mongrel_cluster installed, so maybe I can copy the corresponding folders > to my local machine somehow? > > -- > 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Johannes Jörg Schmidt wrote:> Hi, I''ve got the same problem. > Could you solve it? > > Greetings > JohannesSadly I didn''t. I have reinstalled my whole OS X, and now it works. If you can''t fix it maybe you want to take a look at Locomotive... -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---