Passenger install with conversion errors. Impact on nginx module?

前端 未结 2 1604
情书的邮戳
情书的邮戳 2021-01-22 17:08

Under OS X 10.6.8 installing passenger, first under rbenv, then after uninstalling rbenv, also under rvm

Mini:~ user$ gem install passenger

is

相关标签:
2条回答
  • 2021-01-22 17:42

    The errors apparently are only relative to the documentation.

     gem install passenger --no-ri --no-rdoc 
    

    does install passenger 4.0.48.

    However, nginx would not install because of OS X version.

    on Snow Leopard the latest version one can install, then have nginx installed is:

    gem install passenger -v 4.0.5
    
    0 讨论(0)
  • 2021-01-22 17:48

    It'd better to just update the rdoc gem:

    gem install rdoc

    The bug comes about due to rdoc trying to read a binary file. This bug was fixed.

    0 讨论(0)
提交回复
热议问题