Hubot is a library and an executable that wraps up all the logic of connecting to chat servers.

learn more… | top users | synonyms

0
votes
0answers
7 views

What is the ideal way to listen for messages from Hubot scripts?

I want to create a hubot script that captures messages within a multiuser chat and record them including hubot. The problem is that hubot does not hear itself. It doesn't appear that adapters emit ...
0
votes
1answer
42 views

Is it possible to block the parent thread in Node JS?

I am attempting to fix up some third party NodeJS (hubot-scripts if anyone cares). The idea here is that we reach out to the Teamcity REST API once for every build returned from a previous call and ...
0
votes
1answer
107 views

ZSH/NPM “hubot: command not found” and yet “$less” works [closed]

Both (lessc and hubot) are installed globally. which hubot hubot not found npm not installing it even with sudo ls /usr/local/share/npm/bin grunt jshint lessc recess uglifyjs npm: npm ...
1
vote
2answers
82 views

Can I write scripts for hubot in Javascript?

Hubot is Github's chatroom robot. It's a great tool, except that no one at our company wants to write in Coffeescript....but it appears that we can't write scripts for Hubot in plain old Javascript. ...
1
vote
1answer
71 views

hubot fails to start with flowdock adapter

node: 0.10.0 npm: 1.2.14 I've set the environment variables HUBOT_FLOWDOCK_LOGIN_EMAIL and HUBOT_FLOWDOCK_LOGIN_PASSWORD, and then tried the following. Pulled down the prebuilt hubot from the ...
4
votes
2answers
246 views

Unable to deploy Hubot on Heroku

I deployed a Hubot instance on Heroku last month (Feb 13) with hubot 2.4.6. Today I wanted to add a new script and got a compile error when deploying back to heroku. Before updating I tried to deploy ...
2
votes
0answers
56 views

Add Post support to Hubot

I am trying to add the http-post-say.coffee script to a hubot app which is hosted on Heroku. The documentation indicates that once you add the script then it creates the '/hubot/say' route which ...
0
votes
1answer
53 views

Jenkins Executor Starvation on CloudBees

I have setup jobs correctly using Jenkins on Cloudbees, Janky, and Hubot. Hubot and Janky work and are pushing the jobs to the Jenkins server. The job has been sitting in the Jenkins queue for over ...
1
vote
0answers
34 views

Janky response: Unknown repository :'myrepo'

I take unknown repository error when I build my Github repo on campfire like below: hubot ci build scholar Unknown repository: "scholar" Here my Janky heroku logs: 2013-02-26T07:53:58+00:00 ...
0
votes
1answer
125 views

How to run an asynchronous Ruby script with Hubot?

I want to make one of my Ruby script available to my teammates that are not developers (read "reluctant to setup and maintain a Ruby environment"). We're also using a Hubot within our team. By now, ...
1
vote
1answer
556 views

How do I combine multiple queries in ElasticSearch

For reference here is the code. I am trying to make a hubot plugin that logs to elasticsearch and then uses hubot commands to search those logs. https://gist.github.com/4050748 I am trying to ...
2
votes
0answers
93 views

Hubot makefile test task not working

I get this when I run make test: coffee test/my_script_test.coffee xargs: coffee: No such file or directory make: *** [test] Error 127 My makefile is unaltered from this ...
0
votes
0answers
167 views

How do I get hubot to list all the users in the current campfire chatroom?

I've got hubot (https://github.com/github/hubot) running in a campfire chatroom. I'm trying to make a script which shows all of the logged in users in the chatroom. The default hubot show users ...
2
votes
0answers
87 views

Match up user name and @mention name in Hubot on HipChat

Is there a way to find an @mention name for a user name (either the numeric xxxx_xxxxxx or full name) and vice versa? Looking at the msg.message object there is a user object with the id, jid, and ...
1
vote
1answer
82 views

Is there a hubot command to see who's in the channel?

I want a list of all of the people in the current channel. How can I get this with hubot?
0
votes
2answers
290 views

Giant series of errors when deploying Hubot

I am installing hubot on Linux, and followed the instructions, receiving no errors. However, when I try to actually run my hubot, I encounter problems. First I tried daemonizing hubot according the ...
0
votes
1answer
74 views

Persistently setting Hubot's Campfire variables on *nix

I have successfully set up a Hubot with variables set according to the Campfire adapter README, but when I restart my shell the variables are no longer set. How can I set these variables in a way that ...
0
votes
2answers
96 views

Is there a way to merge two git branches without cloning?

I am trying to write a tool that will automatically merge code from one branch to other. It will be a command on hubot that will merge the appropriate branches. What I am looking for is a way to do ...
3
votes
1answer
476 views

Get Hubot to talk at a certain time?

I'm thinking about making a Hubot clock-based notifier (think "It's 5, time to go home!" but less annoying and for a different reason). What's the best way to go about doing something like this in a ...
1
vote
1answer
751 views

Debugging/printing in a Hubot script

I'm trying to debug an existing Hubot script and in the future write my own, and I need an easy way to debug it or at least print values somewhere (but not to the channel). How can I do so? Bonus ...
7
votes
1answer
399 views

Detecting when a user leaves or enters a channel with hubot

I am trying to make Hubot detect when a user enters or leaves a channel, but so far I have been unable to actually find ANY information pertaining to this. Does anyone have any ideas of how to do ...
1
vote
2answers
590 views

Node.js hubot execute commands on the server

I am trying to execute a command on the server using hubot. This example works for me: robot.respond /(cmd)/i, (msg) -> doing = spawn 'ls', ['-la'] doing.stdout.on 'data', (data) -> ...
2
votes
2answers
774 views

how to setup node_path for hubot

I'm using hubot (specifically hubot-hipchat) and want to use the https://github.com/scriby/asyncblock node module. What is the correct way to import/require a node module in hubot? I cd to where I ...
1
vote
2answers
479 views

Hubot Scripts integrating with Asana

I am working on making my first Hubot script which would add a quick task to Asana. I'm not looking at doing anything too crazy, or at least didn't think I was. Currently I have url = ...
1
vote
1answer
679 views

Can't retrieve username of user in Hubot

I can't seem to make this work, I'm just trying to print out the username of people who've just entered robot.enter (msg) -> msg.send "#{msg.user.name}"