hubot 서버를 설정했습니다. 버전은 2.7.1
입니다. 시작할 때hubot에서 내 hubot-scripts 구성을로드하지 않습니다.
"dependencies": {
"hubot": ">= 2.6.0 < 3.0.0",
"hubot-scripts": ">= 2.5.0 < 3.0.0",
"hubot-hipchat": "~2.6.4"
},
, 그것은 scripts/
에서 스크립트를로드하지만 hubot-scripts.json
에 넣어 한 컬렉션을 무시하는 것 : 여기 내 package.json
의 종속 섹션입니다.
["shipit.coffee", "sudo", "9gag", "abstract"
자세한 시작 로그와, 그 shipit.coffee이 포함되어 있습니다 (기본값 중 하나를) 볼 수 있지만 나머지 하나도 없습니다 : 여기에 해당 파일의 첫 번째 부분입니다
[Tue Feb 25 2014 10:59:46 GMT-0800 (PST)] DEBUG Loading hubot-scripts from /path/node_modules/hubot-scripts/src/scripts
[Tue Feb 25 2014 10:59:46 GMT-0800 (PST)] DEBUG Parsing help for /path/node_modules/hubot-scripts/src/scripts/shipit.coffee
[Tue Feb 25 2014 10:59:46 GMT-0800 (PST)] DEBUG Loading external-scripts from npm packages
node_modules/hubot-scripts/src/scripts/
디렉토리에는 약 460 개의 파일이 있으며 여기에는 내 hubot-scripts.json
파일에있는 4 개의 파일이 포함됩니다. 내가 추측 할 수있는 것은 그 파일을 읽지 않고 있다는 것입니다.
This documentation diff 내가 뭔가를 놓치지 않았다고 생각하게한다. there's an old issue도 역시 전에 패치되었다.
완벽한. 그것을 발견해 주셔서 감사합니다, 나의 [rubber duck] (http://www.codinghorror.com/blog/2012/03/rubber-duck-problem-solving.html)이 나를 실망 시켰습니다. – tedder42