Skip to content

Commit

Permalink
Multibot is now working as an npm package
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Joel committed Aug 26, 2011
1 parent 5b76d49 commit 735e3db
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 45 deletions.
6 changes: 3 additions & 3 deletions lib/adapter/skypekit-bridge.py
Expand Up @@ -9,8 +9,8 @@ def log(message):
sys.stdout.write(message + '\n'); sys.stdout.write(message + '\n');
sys.stdout.flush(); sys.stdout.flush();


sys.path.append(os.path.abspath('./support/skypekit/sdk/ipc/python')) sys.path.append(os.path.join(os.path.dirname(__file__), '../../support/skypekit/sdk/ipc/python'))
sys.path.append(os.path.abspath('./support/skypekit/sdk/interfaces/skype/python')) sys.path.append(os.path.join(os.path.dirname(__file__), '../../support/skypekit/sdk/interfaces/skype/python'))


import skypekit import skypekit
import SkyLib import SkyLib
Expand Down Expand Up @@ -54,7 +54,7 @@ def socketOpen(self, socket):
log("Failed to access SkyLib: " + err.__str__()) log("Failed to access SkyLib: " + err.__str__())


try: try:
self.Skype = SkyLib.GetSkyLib(os.path.abspath('./support/skypekit/key.pem')) self.Skype = SkyLib.GetSkyLib(os.path.join(os.path.dirname(__file__), '../../support/skypekit/key.pem'))
except Exception: except Exception:
log("Failed to create Skypekit instance!") log("Failed to create Skypekit instance!")
raise raise
Expand Down
Empty file removed lib/bot/chat.js
Empty file.
42 changes: 0 additions & 42 deletions lib/bot/index.js

This file was deleted.

Empty file removed lib/bot/memory.js
Empty file.
Empty file removed lib/bot/orchestrate.js
Empty file.
Empty file removed lib/bot/search.js
Empty file.
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -7,6 +7,7 @@
"type" : "git", "type" : "git",
"url" : "git://github.com/cdata/damonbot.git" "url" : "git://github.com/cdata/damonbot.git"
}, },
"main" : "./lib/index.js",
"engines" : { "engines" : {
"node" : "~0.4.10" "node" : "~0.4.10"
}, },
Expand Down

0 comments on commit 735e3db

Please sign in to comment.