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.



212
213
214
215
# File 'lib/bolt/analytics.rb', line 212

def initialize
  @logger = Logging.logger[self]
  @bundled_content = []
end

Instance Attribute Details

#bundled_contentObject

Returns the value of attribute bundled_content.



210
211
212
# File 'lib/bolt/analytics.rb', line 210

def bundled_content
  @bundled_content
end

Instance Method Details

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



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

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

#finishObject



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

def finish; end

#report_bundled_content(mode, name) ⇒ Object



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

def report_bundled_content(mode, name); end

#screen_view(screen, **_kwargs) ⇒ Object



217
218
219
# File 'lib/bolt/analytics.rb', line 217

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