0.1.0 • Published 9 years ago

hubot-linda v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

Hubot Linda

Linda connector for Hubot

Build Status

Install

% npm i hubot-linda -save

edit external-script.json

["hubot-linda"]

Config

set ENV Variables

Required

% export HUBOT_LINDA_SERVER=http://linda-server.herokuapp.com
% export HUBOT_LINDA_TUPLESPACE=test

Optional (default value is below)

% export HUBOT_LINDA_ROOM=general
% export HUBOT_LINDA_HEADER=:feelsgood:  # slack emoticon
% export NODE_ENV=production             # mute socket.io status message

on heroku: heroku config:set HUBOT_LINDA_SERVER=http://linda-server.herokuapp.com

System

  1. Write a Tuple into Linda {type: "hubot", cmd: "post", value: "hello!!"}
  2. Hubot detects the Tuple
  3. send "Hello!!" to chat
{
  type: "hubot",   // required
  cmd: "post",     // required
  value: "hello",   // required
  room: "#general" // optional, you can specify chat room.
}

for Hubot Script

hubot-linda emits linda:ready event when ready.

# Description:
#   read light sensor value with Linda
# Commands:
#   hubot sensor light

module.exports = (robot) ->

  robot.on 'linda:ready', ->

    robot.respond /sensor light/, (msg) ->

      robot.linda.tuplespace('test').read {type: "sensor", name: "light"}, (err, tuple) ->
        if err
          msg.send "linda error"
          return
        msg.send "light : #{tuple.data.value}"
0.1.0

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago