Skip to content

Commit

Permalink
Add Hubot 2.3.0 compatibility & bump to v1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
powdahound committed Jul 18, 2012
1 parent 7c3f7b6 commit dd71c91
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -10,8 +10,8 @@ This is a HipChat-specific version of the more general [instructions in the Hubo
1. Edit `hubot/packages.json` and add `hubot-hipchat` to the `dependencies` section. It should look something like this: 1. Edit `hubot/packages.json` and add `hubot-hipchat` to the `dependencies` section. It should look something like this:


"dependencies": { "dependencies": {
"hubot-hipchat": ">= 1.0.7", "hubot-hipchat": ">= 1.0.8",
"hubot": ">= 2.0.1", "hubot": ">= 2.3.0",
... ...
} }


Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{ {
"name": "hubot-hipchat", "name": "hubot-hipchat",
"version": "1.0.7", "version": "1.0.8",
"author": "hipchat", "author": "hipchat",
"keywords": "github hubot hipchat adapter", "keywords": "github hubot hipchat adapter",
"description": "A Hipchat adapter for hubot", "description": "A Hipchat adapter for hubot",
Expand Down
8 changes: 3 additions & 5 deletions src/hipchat.coffee
@@ -1,8 +1,6 @@
Robot = require('hubot').robot() {Adapter,Robot} = require 'hubot'
Adapter = require('hubot').adapter() HTTPS = require 'https'

Wobot = require('wobot').Bot
HTTPS = require 'https'
Wobot = require('wobot').Bot


class HipChat extends Adapter class HipChat extends Adapter
send: (user, strings...) -> send: (user, strings...) ->
Expand Down

1 comment on commit dd71c91

@powdahound
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Forgot to mention that this fixes #35

Please sign in to comment.