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.



189
190
191
192
# File 'lib/bolt/analytics.rb', line 189

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

Instance Attribute Details

#bundled_contentObject

Returns the value of attribute bundled_content.



187
188
189
# File 'lib/bolt/analytics.rb', line 187

def bundled_content
  @bundled_content
end

Instance Method Details

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



200
201
202
# File 'lib/bolt/analytics.rb', line 200

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

#finishObject



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

def finish; end

#report_bundled_content(mode, name) ⇒ Object



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

def report_bundled_content(mode, name); end

#screen_view(screen, **_kwargs) ⇒ Object



194
195
196
# File 'lib/bolt/analytics.rb', line 194

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