Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cinch-cooldown

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cinch-cooldown

  • 1.2.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Note: As of v1.2.0 the config changed to use symbols for the channel names, please be aware.

Cinch::Cooldown

Gem Version Dependency Status Build Status Code Climate Test Coverage Issue Count

This library is used to add a global cooldown so that users are prevented from spamming the channel.

Installation

Add this line to your application's Gemfile:

gem 'cinch-cooldown'

And then execute:

$ bundle

Or install it yourself as:

$ gem install cinch-cooldown

Usage

Configuration Steps:

  1. You need to add the configuration to your bot in the config block. You will need to add config info for every channel the bot is in that you want a cooldown. The :global is how many seconds the bot will wait before listening to a command that prints something to the channel, while the :user directive is how long it will wait per user. Currently the gem is simple and assumes that the user timer will be greater than the global timer.

    c.shared[:cooldown] = { :config => { bottest: { global: 10, user: 20 } } }

  2. If you are using this with my plugins, things should just work. However if you want to use this with your own plugins, you need to add a 'require cinch/cooldown' to the top of said plugin, and an enforce_cooldown to the plugin after the include Cinch::Plugin line.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

FAQs

Package last updated on 27 Jan 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc