No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
cc a list of users when a group is @mentioned
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
~> 1.3
>= 0
>= 3.0.0

Runtime

>= 4.2
 Project Readme

lita-group-mention

Build Status Coverage Status

Installation

Add lita-group-mention to your Lita instance's Gemfile:

gem "lita-group-mention"

Configuration (optional)

Preload mention groups and members using configuration:

config.handlers.group_mention.groups =
  {
    'ops' => ['ops1','ops2']
    'devs' => ['dev1','dev2']
  }

Usage

This plugin will monitor messages for mentions of groups, and expand the group to mention a list of each user in that group. Groups are stored in redis, and configured with commands.

Larry: Lita group mention add moe to ops
Lita: Added @moe to ops
Larry: Lita group mention add curly to dev
Lita: Added @curly to dev
Larry: Good morning @ops and @dev
Lita: cc @moe, @curly
Larry: Lita group mention show groups
Lita: ops: moe
      dev: curly
Larry: Lita group mention remove group ops
Lita: Removed the ops group
Larry: group mention show user curly
Lita: curly: dev
Larry: group mention show user moe
Lita: moe:

License

MIT