Пассажирские грабли не найдены! Ubuntu (10.04) - PullRequest
2 голосов
/ 17 сентября 2010

Ладно, я установил rvm и все как root. Затем я установил Ruby Enterprise Edition с помощью rvm.

Теперь у меня ТОННА проблем с рейком и rvm, и я не слишком уверен, почему.

Мне пришлось вручную создавать ссылки в моем / usr / local / bin для получения рейка.

Но когда я-пассажир-устанавливаю-nginx-модуль

Welcome to the Phusion Passenger Nginx module installer, v2.2.15.

This installer will guide you through the entire installation process. It
shouldn't take more than 5 minutes in total.

Here's what you can expect from the installation process:

 1. This installer will compile and install Nginx with Passenger support.
 2. You'll learn how to configure Passenger in Nginx.
 3. You'll learn how to deploy a Ruby on Rails application.

Don't worry if anything goes wrong. This installer will advise you on how to
solve any problems.

Press Enter to continue, or Ctrl-C to abort.


--------------------------------------------

Checking for required software...

 * GNU C++ compiler... found at /usr/bin/g++
 * Ruby development headers... found
 * OpenSSL support for Ruby... found
 * RubyGems... found
 * Rake... not found
 * rack... found
 * OpenSSL development headers... found
 * Zlib development headers... found

Some required software is not installed.
But don't worry, this installer will tell you how to install them.

Press Enter to continue, or Ctrl-C to abort.

Но грабли на моем пути

root@li84-12:/usr/bin# rake
rake aborted!
No Rakefile found (looking for: rakefile, Rakefile, rakefile.rb, Rakefile.rb)
/usr/local/rvm/rubies/ree-1.8.7-2010.02/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2377:in `raw_load_rakefile'
(See full trace by running task with --trace)

Идеи у кого-нибудь? Это мешает моему проекту клиента = \

Ответы [ 2 ]

2 голосов
/ 22 сентября 2010

Я столкнулся с тем же, и следующий комментарий в ветке googlecode был проницательным.

http://code.google.com/p/phusion-passenger/issues/detail?id=227#c8

Короткая версия - она ​​ищет рейк в том же каталоге, в котором установлен ваш двоичный файл ruby ​​(а не в вашем $ PATH) Быстрое и грязное исправление состояло в том, чтобы удалить символическую ссылку для rake в каталог ruby ​​bin.

Например.

Ruby Binary = /usr/local/bin/ruby

Rake Binary = /usr/local/lib/ruby/gems/1.8/bin/rake

ln -s /usr/local/lib/ruby/gems/1.8/bin/rake /usr/local/bin/

В моем случае это помогло.

1 голос
/ 18 сентября 2010

Попробуйте Passenger 3. В нем значительно улучшена поддержка RVM.

...