Class: Bolt::Analytics::NoopClient
- Inherits:
-
Object
- Object
- Bolt::Analytics::NoopClient
- Defined in:
- lib/bolt/analytics.rb
Instance Attribute Summary collapse
-
#bundled_content ⇒ Object
Returns the value of attribute bundled_content.
Instance Method Summary collapse
- #event(category, action, **_kwargs) ⇒ Object
- #finish ⇒ Object
-
#initialize ⇒ NoopClient
constructor
A new instance of NoopClient.
- #report_bundled_content(mode, name) ⇒ Object
- #screen_view(screen, **_kwargs) ⇒ Object
Constructor Details
#initialize ⇒ NoopClient
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_content ⇒ Object
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 |
#finish ⇒ Object
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 |