Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
* [#4](https://github.com/slack-ruby/slack-ruby-bot-server-events-app-mentions/pull/4): Upgraded RuboCop to 1.80.2 - [@dblock](https://github.com/dblock).
* Your contribution here.

#### 0.1.1 (01/06/2021)
#### 0.1.1 (2021/01/06)

* [#1](https://github.com/slack-ruby/slack-ruby-bot-server-events-app-mentions/pull/1): Fix: fetch text via hash accessor - [@robholland](https://github.com/robholland).

#### 0.1.0 (11/30/2020)
#### 0.1.0 (2020/11/30)

* Initial public release - [@dblock](https://github.com/dblock).
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2020 Daniel Doubrovkine & Contributors
Copyright (c) 2020-2025 Daniel Doubrovkine & Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ Slack Ruby Bot Server Events App Mentions

An extension to [slack-ruby-bot-server-events](https://github.com/slack-ruby/slack-ruby-bot-server-events) that makes it easier to handle [app mentions](https://api.slack.com/events/app_mention) - message events that directly mention your bot user.

### Table of Contents

- [Sample](#sample)
- [Usage](#usage)
- [Gemfile](#gemfile)
- [Configure OAuth Scopes](#configure-oauth-scopes)
- [Implement Mentions](#implement-mentions)
- [Configure Handlers](#configure-handlers)
- [Copyright & License](#copyright--license)

### Sample

See [slack-ruby/slack-ruby-bot-server-events-app-mentions-sample](https://github.com/slack-ruby/slack-ruby-bot-server-events-app-mentions-sample) for a working sample.
Expand Down Expand Up @@ -73,6 +83,6 @@ end

### Copyright & License

Copyright [Daniel Doubrovkine](http://code.dblock.org) and Contributors, 2020
Copyright [Daniel Doubrovkine](http://code.dblock.org) and Contributors, 2020-2025

[MIT License](LICENSE)
2 changes: 1 addition & 1 deletion lib/slack-ruby-bot-server-events-app-mentions/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module SlackRubyBotServer
module Events
module AppMentions
VERSION = '0.1.2'
VERSION = '0.2.0'
end
end
end