Class: Bolt::Analytics::NoopClient
- Inherits:
-
Object
- Object
- Bolt::Analytics::NoopClient
- Defined in:
- lib/bolt/analytics.rb
Instance Method Summary collapse
- #event(category, action, **_kwargs) ⇒ Object
- #finish ⇒ Object
-
#initialize ⇒ NoopClient
constructor
A new instance of NoopClient.
- #screen_view(screen, **_kwargs) ⇒ Object
Constructor Details
#initialize ⇒ NoopClient
Returns a new instance of NoopClient.
161 162 163 |
# File 'lib/bolt/analytics.rb', line 161 def initialize @logger = Logging.logger[self] end |
Instance Method Details
#event(category, action, **_kwargs) ⇒ Object
169 170 171 |
# File 'lib/bolt/analytics.rb', line 169 def event(category, action, **_kwargs) @logger.debug "Skipping submission of '#{category} #{action}' event because analytics is disabled" end |
#finish ⇒ Object
173 |
# File 'lib/bolt/analytics.rb', line 173 def finish; end |
#screen_view(screen, **_kwargs) ⇒ Object
165 166 167 |
# File 'lib/bolt/analytics.rb', line 165 def screen_view(screen, **_kwargs) @logger.debug "Skipping submission of '#{screen}' screenview because analytics is disabled" end |