Method: Resque::Job#==
- Defined in:
- lib/resque/job.rb
#==(other) ⇒ Object
Equality
198 199 200 201 202 |
# File 'lib/resque/job.rb', line 198 def ==(other) queue == other.queue && payload_class == other.payload_class && args == other.args end |