Skip to content

Commit

Permalink
Use and recommend async-websocket by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
dblock committed Aug 27, 2018
1 parent 9392b2a commit e2302bf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ matrix:
env: CONCURRENCY=celluloid-io WITH_GIPHY_CLIENT=true
- rvm: 2.3.0
env: CONCURRENCY=faye-websocket WITH_GIPHY_CLIENT=true
- rvm: 2.5
env: CONCURRENCY=async-websocket WITH_GIPHY_CLIENT=true
- rvm: ruby-head
- rvm: jruby-head
allow_failures:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
### 0.11.2 (Next)

* [#198](https://github.com/slack-ruby/slack-ruby-bot/pull/198): Recommend using `async-websocket` instead of `celluloid-io` - [@dblock](https://github.com/dblock).
* Your contribution here.

### 0.11.1 (05/06/2018)
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ source 'http://rubygems.org'

gemspec

gem 'slack-ruby-client', github: 'dblock/slack-ruby-client', branch: 'async'
gem ENV['CONCURRENCY'], require: false if ENV.key?('CONCURRENCY')

# rubocop:enable Bundler/OrderedGems
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ There are no particular rules about when to release slack-ruby-bot. Release bug
Run tests, check that all tests succeed locally.

```
export CONCURRENCY=celluloid-io
export CONCURRENCY=async-websocket
bundle install
rake
```
Expand Down

0 comments on commit e2302bf

Please sign in to comment.