mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-27 02:18:41 -05:00
This commit fixes minor rubocopy violations in eleven source files. Minor violations are those that include formatting, single quotes, and recently added classes.
20 lines
233 B
Ruby
20 lines
233 B
Ruby
module Vmpooler
|
|
class DummyStatsd
|
|
attr_reader :server, :port, :prefix
|
|
|
|
def initialize(*)
|
|
end
|
|
|
|
def increment(*)
|
|
true
|
|
end
|
|
|
|
def gauge(*)
|
|
true
|
|
end
|
|
|
|
def timing(*)
|
|
true
|
|
end
|
|
end
|
|
end
|