# Resque::One [](https://rubygems.org/gems/resque-one) [](https://github.com/gabynaiman/resque-one/actions/workflows/ci.yml) [](https://coveralls.io/r/gabynaiman/resque-one?branch=master) [](https://codeclimate.com/github/gabynaiman/resque-one) Resque plugin to specify uniq jobs with the same payload per queue. Have support for resque-status. ## Installation Add this line to your application's Gemfile: ```ruby gem 'resque-one' ``` And then execute: $ bundle Or install it yourself as: $ gem install resque-one ## Usage ```ruby class MyJob extend Resque::Plugins::One end ``` or ```ruby class MyJob def self.one? true end end ``` ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/gabynaiman/resque-one. ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).