Mongrel on windows with rails3

戏子无情 提交于 2019-12-11 06:36:14

问题


I am deploying a rails 3 application on a windows machine and I wan to run the app on mongrel. I have installed mongrel manually (not through bundler). I didn't installed it through bundler because when I tried it, it errors

Fetching source index for rubygems.org

Could not reach rubygems repository

http://rubygems.org Could not find gem mongrel <>=0, runtime in any of the source

So I downloaded .gem and installed.

But bundler still looks to fetch it from the repository. Also, when I try to start server using "rails server mongrel" it says

no such file to load - mongrel


回答1:


I have a similar setup that works now for me. Here are the details:

  • I installed Ruby 1.9.2 (ruby 1.9.2p0 (2010-08-18) [i386-mingw32])
  • I installed Mongrel through Gem (mongrel (1.2.0.pre2 x86-mingw32). It is necessary to take here the version 1.2.0.pre2, because the 1.1.x versions don't work with Rails 3.
  • I added the line gem 'mongrel', '1.2.0.pre2' to the Gemfile in my Rails application.

I start the server with rails s, and it takes Mongrel as a default. See the similar question LoadError running Mongrel with Rails3 and Ruby 1.9.2

Hope the same setup works for you as well.



来源:https://stackoverflow.com/questions/4264798/mongrel-on-windows-with-rails3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!