Class: WarCorrespondent::Reporters::UsersReporter

Inherits:
WarCorrespondent::Reporter show all
Defined in:
lib/warcorrespondent/reporters/users.rb

Instance Attribute Summary

Attributes inherited from WarCorrespondent::Reporter

#identifier, #options, #timeout

Instance Method Summary collapse

Methods inherited from WarCorrespondent::Reporter

#run, #update

Constructor Details

#initialize(args) ⇒ UsersReporter

Returns a new instance of UsersReporter.



4
5
6
7
8
9
10
11
# File 'lib/warcorrespondent/reporters/users.rb', line 4

def initialize(args)
  
  @block = Proc.new do
    {:identifier => "users", :value => SystemInformation::users }
  end
  
  super(args)
end