Class: Rudder::Analytics
- Inherits:
-
Object
- Object
- Rudder::Analytics
- Includes:
- Logging
- Defined in:
- lib/rudder/analytics.rb,
lib/rudder/analytics/utils.rb,
lib/rudder/analytics/client.rb,
lib/rudder/analytics/worker.rb,
lib/rudder/analytics/logging.rb,
lib/rudder/analytics/request.rb,
lib/rudder/analytics/version.rb,
lib/rudder/analytics/defaults.rb,
lib/rudder/analytics/response.rb,
lib/rudder/analytics/field_parser.rb,
lib/rudder/analytics/message_batch.rb,
lib/rudder/analytics/backoff_policy.rb
Defined Under Namespace
Modules: Defaults, Logging, Utils Classes: BackoffPolicy, Client, FieldParser, MessageBatch, PrefixedLogger, Request, Response, Worker
Constant Summary collapse
- VERSION =
'0.0.1'
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ Analytics
constructor
Initializes a new instance of Client, to which all method calls are proxied.
- #method_missing(message, *args, &block) ⇒ Object
- #respond_to_missing?(method_name, include_private = false) ⇒ Boolean
Methods included from Logging
Constructor Details
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(message, *args, &block) ⇒ Object
25 26 27 28 29 30 31 |
# File 'lib/rudder/analytics.rb', line 25 def method_missing(, *args, &block) if @client.respond_to? @client.send , *args, &block else super end end |
Instance Method Details
#respond_to_missing?(method_name, include_private = false) ⇒ Boolean
33 34 35 |
# File 'lib/rudder/analytics.rb', line 33 def respond_to_missing?(method_name, include_private = false) @client.respond_to?(method_name) || super end |