UPGRADING.md in slack-ruby-client-0.7.6 vs UPGRADING.md in slack-ruby-client-0.7.7
- old
+ new
@@ -17,11 +17,11 @@
```ruby
puts "Welcome #{client.self.name} to the #{client.team.name} team."
```
-See [#56](https://github.com/dblock/slack-ruby-client/issues/56) for more information.
+See [#56](https://github.com/slack-ruby/slack-ruby-client/issues/56) for more information.
#### Changes to RealTime Local Store
Upon a successful `rtm.start` the RealTime client keeps a local cache of objects, including `self` or `users`. It will now also track changes to these objects. The following changes have been made to the data structures.
@@ -35,11 +35,11 @@
##### client .users, .channels, .groups, .ims
The `client.users`, `.channels`, `.groups` and `.ims` collections have been changed from `Array` to `Hash`, with object ID as key. Replace any code iterating over the array, eg. `client.users.values.each` or `client.channels.each_pair { |id, channel| ... }`.
-See [#55](https://github.com/dblock/slack-ruby-client/issues/55) for more information.
+See [#55](https://github.com/slack-ruby/slack-ruby-client/issues/55) for more information.
### Upgrading to >= 0.5.0
#### Changes to Real Time Concurrency
@@ -57,8 +57,8 @@
gem 'celluloid-io'
```
When in doubt, use `faye-websocket`.
-See [#5](https://github.com/dblock/slack-ruby-client/issues/5) for more information.
+See [#5](https://github.com/slack-ruby/slack-ruby-client/issues/5) for more information.