Facebook com Ruby on Rails

2

Estou tentando seguir o tutorial do Facebooker (para o Ruby on Rails), mas não consigo obter o túnel ssh em execução:

Bring up your terminal again. You need to start your local development server, and then make that server available to the wider internet. Do this like so:

script/server &  
rake facebooker:tunnel:start &

Once your server has started, the second command will start a reverse ssh tunnel.

Quando executo o segundo comando, recebo o seguinte:

user@computer:~/facebooker-test$ rake -t facebooker:tunnel:start 
(in /home/user/facebooker-test)  
** Invoke facebooker:tunnel:start (first_time)  
** Invoke environment (first_time)  
** Execute environment  
** Invoke facebooker:tunnel:config (first_time)  
** Invoke environment  
** Execute facebooker:tunnel:config
** Execute facebooker:tunnel:start
Starting tunnel :4007 to 0.0.0.0:3000
OpenSSH_5.1p1 Debian-6ubuntu2, OpenSSL 0.9.8g 19 Oct 2007
usage: ssh [-1246AaCfgKkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]
           [-D [bind_address:]port] [-e escape_char] [-F configfile]
           [-i identity_file] [-L [bind_address:]port:host:hostport]
           [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]
           [-R [bind_address:]port:host:hostport] [-S ctl_path]
           [-w local_tun[:remote_tun]] [user@]hostname [command]
user@computer:~/facebooker-test$

Aparentemente, há algum tipo de incompatibilidade entre o comando rake da tarefa ssh e a sintaxe correta.

Estou usando o Ubuntu 9.10 com o pacote openssh-server e o plugin facebooker para o Ruby on Rails pronto para uso pelo github.

Alguma idéia?

    
por Jono 16.12.2009 / 13:03

1 resposta

1

tudo bem, eu percebi. Aparentemente, faltavam algumas definições no meu arquivo facebooker.yml .

Eu tive que colocar no host e no usernam.

Descobri isso entrando em vendor/plugins/facebooker/lib/tasks/tunnel.rake e adicionando a seguinte linha ao final da diretiva :config :

@notification <<"using the following ssh command: \n #{@ssh_command}"

Então, quando eu chamo o rake com a opção -t, recebo uma saída de como o comando será executado. Eu vi um @ no final do comando e percebi o que estava faltando. Yay me!

    
por 16.12.2009 / 14:17