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.



222
223
224
225
# File 'lib/bolt/analytics.rb', line 222

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

Instance Attribute Details

#bundled_contentObject

Returns the value of attribute bundled_content.



220
221
222
# File 'lib/bolt/analytics.rb', line 220

def bundled_content
  @bundled_content
end

Instance Method Details

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



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

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

#finishObject



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

def finish; end

#report_bundled_content(mode, name) ⇒ Object



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

def report_bundled_content(mode, name); end

#screen_view(screen, **_kwargs) ⇒ Object



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

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