hubot 3.3.2 → 3.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/test/user_test.js CHANGED
@@ -14,14 +14,14 @@ describe('User', () =>
14
14
  })
15
15
 
16
16
  it('sets attributes passed in', function () {
17
- const user = new User('hubot', {foo: 1, bar: 2})
17
+ const user = new User('hubot', { foo: 1, bar: 2 })
18
18
 
19
19
  expect(user.foo).to.equal(1)
20
20
  expect(user.bar).to.equal(2)
21
21
  })
22
22
 
23
23
  it('uses name attribute when passed in, not id', function () {
24
- const user = new User('hubot', {name: 'tobuh'})
24
+ const user = new User('hubot', { name: 'tobuh' })
25
25
 
26
26
  expect(user.name).to.equal('tobuh')
27
27
  })
package/.travis.yml DELETED
@@ -1,27 +0,0 @@
1
- language: node_js
2
- node_js:
3
- - "10"
4
- - "8"
5
- - "6"
6
- notifications:
7
- email: false
8
- sudo: false
9
- addons:
10
- apt:
11
- packages:
12
- - expect
13
- before_install:
14
- - npm install -g npm@latest
15
- before_script:
16
- - npm prune
17
- - bin/e2e-test.sh
18
- after_success:
19
- - npm run coverage
20
- branches:
21
- except:
22
- - /^v\d+\.\d+\.\d+$/
23
- deploy:
24
- provider: script
25
- skip_cleanup: true
26
- script:
27
- - npx travis-deploy-once "npx semantic-release"
package/ROADMAP.md DELETED
@@ -1,37 +0,0 @@
1
- # Hubot Roadmap
2
-
3
- Hubot v3 aims to be a bot framework optimized for developers and developer workflows, with great integration with the most popular chat clients and developer tools, and an active community that is sharing scripts and best practices.
4
-
5
- This roadmap represents some of priorities for us over the next couple months. Issues or pull requests will be opened to discuss each of these items as they progress.
6
-
7
- ## 1. Return to a “maintained” status
8
-
9
- - [x] Create a Hubot core team with at least 2 GitHub employees and at least 1 community member. The core team is [@technicalpickles](https://github.com/technicalpickles), [@bkeepers](https://github.com/bkeepers), [@mose](https://github.com/mose), and [@gr2m](https://github.com/gr2m) ([#1323](https://github.com/github/hubot/pull/1323))
10
- - [ ] Document all maintainer processes (triage, release, etc.)
11
- - [ ] Create an issue template that addresses common requests
12
- - [ ] Configure automation ([probot stale](https://github.com/probot/stale), [Greenkeeper](https://greenkeeper.io/), [semantic-release](https://github.com/semantic-release/semantic-release))
13
- - [ ] Review all [open PRs](https://github.com/github/hubot/pulls) and triage [open issues](https://github.com/github/hubot/issues)
14
- - [ ] Establish a release process and regular release cadence of the first Tuesday of every month.
15
- - [ ] Establish a first-responder rotation, which will aim to reduce the average time to first response on all new Issues and PRs to 48 hours.
16
-
17
- ## 2. Modernize the community
18
-
19
- - [ ] Consolidate all officially supported Hubot projects into a single GitHub organization. This will include github/hubot and a handful of supported scripts, but will not include all community scripts in https://github.com/hubot-scripts ([#1327](https://github.com/github/hubot/issues/1327))
20
- - [ ] Create a community forum to provide a place for people to ask questions, get help, and share best practices. [Discourse](https://www.discourse.org/) is the obvious choice here.
21
- - [x] Choose a chat platform for maintainers and contributors, and post notices in various existing places (#hubot on freenode, github/hubot on Gitter). Slack is the obvious choice here. [Join us on Slack](https://hubot-slackin.herokuapp.com/).
22
- - [x] Add a code of conduct based on http://contributor-covenant.org/ and processes to enforce it in all official spaces. ([#1334](https://github.com/github/hubot/pull/1334))
23
- - [ ] Publish weekly community updates (blog, newsletter, etc) which highlight recent and upcoming changes, give shoutouts to contributors / maintainers, and maybe mention interesting uses of Hubot
24
- - [x] Create Hubot Evolution—inspired by [Swift Evolution](https://github.com/apple/swift-evolution)—for proposing user-visible enhancements. ([hubotio/evolution#1](https://github.com/hubotio/evolution/pull/1))
25
-
26
- ## 3. Modernize the project
27
-
28
- Each of these proposals will go through the [Hubot Evolution](https://github.com/hubotio/evolution) process.
29
-
30
- - Translate from CoffeeScript to JavaScript and update to modern versions of Node.js and NPM (or Yarn)
31
- - Revisit new bot generator (yeoman has a ton of dependencies, some of which can be error prone on windows)
32
- - Support for running multiple adapters and archetypes (chat, deployment, CI, github, etc)
33
- - Merge with [@probot](https://github.com/probot) and build out first class GitHub integration.
34
- - Introduce "Commands”, an explicit interface for registering commands (like Slack’s slash commands) as an alternative to regular expressions
35
- - Publish a ChatOps RPC spec and implement support for Hubot acting as both a client and a server.
36
- - Support rich messages and interactions on platforms that support it
37
- - Publish a public script directory backed by NPM