class Resque::Plugins::Logstash::Config
Attributes
disabled[RW]
transport[RW]
Public Class Methods
new()
click to toggle source
# File lib/resque/logstash/config.rb, line 6 def initialize @transport = Transport::Redis.new('localhost', 6379) @disabled = false @tags = [] end
Public Instance Methods
disabled?()
click to toggle source
# File lib/resque/logstash/config.rb, line 12 def disabled? disabled end