Sha256: 770a4d8414797434fd52631b3c3556f2c729fb28a74f8bc8602c7a7663c7b386
Contents?: true
Size: 314 Bytes
Versions: 18
Compression:
Stored size: 314 Bytes
Contents
class AppsignalMock attr_reader :gauges def initialize(hostname: nil) @hostname = hostname @gauges = [] end def config options = {} options[:hostname] = @hostname if @hostname ConfigHelpers.build_config(:options => options) end def set_gauge(*args) @gauges << args end end
Version data entries
18 entries across 18 versions & 1 rubygems