Class: Rudder::Analytics

Inherits:
Object
  • Object
show all
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/version.rb,
lib/rudder/analytics/defaults.rb,
lib/rudder/analytics/response.rb,
lib/rudder/analytics/transport.rb,
lib/rudder/analytics/test_queue.rb,
lib/rudder/analytics/field_parser.rb,
lib/rudder/analytics/configuration.rb,
lib/rudder/analytics/message_batch.rb,
lib/rudder/analytics/backoff_policy.rb

Defined Under Namespace

Modules: Defaults, Logging, Utils Classes: BackoffPolicy, Client, Configuration, FieldParser, MessageBatch, PrefixedLogger, Response, TestQueue, Transport, Worker

Constant Summary collapse

VERSION =
'3.0.1'

Instance Method Summary collapse

Methods included from Logging

included, #logger

Constructor Details

#initialize(options = {}) ⇒ Analytics

Initializes a new instance of Client, to which all method calls are proxied.

Parameters:

Options Hash (options):

  • :stub (Boolean) — default: false

    If true, requests don’t hit the server and are stubbed to be successful.



22
23
24
# File 'lib/rudder/analytics.rb', line 22

def initialize(options = {})
  @client = Rudder::Analytics::Client.new options
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(message, *args, &block) ⇒ Object



26
27
28
29
30
31
32
# File 'lib/rudder/analytics.rb', line 26

def method_missing(message, *args, &block)
  if @client.respond_to? message
    @client.send message, *args, &block
  else
    super
  end
end

Instance Method Details

#respond_to_missing?(method_name, include_private = false) ⇒ Boolean

Returns:

  • (Boolean)


34
35
36
# File 'lib/rudder/analytics.rb', line 34

def respond_to_missing?(method_name, include_private = false)
  @client.respond_to?(method_name) || super
end