Class: Bolt::Analytics::NoopClient

Inherits:
Object
  • Object
show all
Defined in:
lib/bolt/analytics.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeNoopClient

Returns a new instance of NoopClient.



228
229
230
231
# File 'lib/bolt/analytics.rb', line 228

def initialize
  @logger = Bolt::Logger.logger(self)
  @bundled_content = []
end

Instance Attribute Details

#bundled_contentObject

Returns the value of attribute bundled_content.



226
227
228
# File 'lib/bolt/analytics.rb', line 226

def bundled_content
  @bundled_content
end

Instance Method Details

#event(category, action, **_kwargs) ⇒ Object



243
244
245
# File 'lib/bolt/analytics.rb', line 243

def event(category, action, **_kwargs)
  @logger.trace "Skipping submission of '#{category} #{action}' event because analytics is disabled"
end

#finishObject



247
# File 'lib/bolt/analytics.rb', line 247

def finish; end

#plan_counts(_) ⇒ Object



239
240
241
# File 'lib/bolt/analytics.rb', line 239

def plan_counts(_)
  {}
end

#report_bundled_content(mode, name) ⇒ Object



237
# File 'lib/bolt/analytics.rb', line 237

def report_bundled_content(mode, name); end

#screen_view(screen, **_kwargs) ⇒ Object



233
234
235
# File 'lib/bolt/analytics.rb', line 233

def screen_view(screen, **_kwargs)
  @logger.trace "Skipping submission of '#{screen}' screenview because analytics is disabled"
end