Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@therealklanni/hubot

hubotio2MIT3.4.0

A simple helpful robot for your Company

github, hubot, campfire, bot

readme

Build Status Coverage Status

Hubot

Hubot is a framework to build chat bots, modeled after GitHub's Campfire bot of the same name, hubot. He's pretty cool. He's extendable with scripts and can work on many different chat services.

This repository provides a library that's distributed by npm that you use for building your own bots. See the documentation for details on getting up and running with your very own robot friend.

In most cases, you'll probably never have to hack on this repo directly if you are building your own bot. But if you do, check out CONTRIBUTING.md

If you'd like to chat with Hubot users and developers, join us on Slack.

License

See the LICENSE file for license rights and limitations (MIT).

changelog

!/usr/bin/env bash

Tag and push a release.

set -e

Make sure we're in the project root.

cd $(dirname "$0")/..

Make sure the darn thing works

npm update && script/smoke-test

Make sure we're on the master branch.

(git branch | grep -q '* master') || { echo "Only release from the master branch." exit 1 }

Figure out what version we're releasing.

tag=vnode -e 'console.log(require("./package.json").version)'

Ensure there's a line in the CHANGELOG

grep "$tag" CHANGELOG.md || { echo "No entry for '$tag' found in the CHANGELOG." exit 1 }

Make sure we haven't released this version before.

git fetch -t origin

(git tag -l | grep -q "$tag") && { echo "Whoops, there's already a '${tag}' tag." exit 1 }

Tag it and bag it.

npm publish && git tag "$tag" && git push origin master --tags