Class: Segment::Analytics

Inherits:
Object
  • Object
show all
Includes:
Logging
Defined in:
lib/segment/analytics.rb,
lib/segment/analytics/utils.rb,
lib/segment/analytics/client.rb,
lib/segment/analytics/worker.rb,
lib/segment/analytics/logging.rb,
lib/segment/analytics/request.rb,
lib/segment/analytics/version.rb,
lib/segment/analytics/defaults.rb,
lib/segment/analytics/response.rb

Defined Under Namespace

Modules: Defaults, Logging, Utils Classes: Client, Request, Response, Worker

Constant Summary collapse

VERSION =
'2.1.0'

Instance Method Summary collapse

Methods included from Logging

included, logger, #logger, logger=

Constructor Details

#initialize(options = {}) ⇒ Analytics

Returns a new instance of Analytics.



12
13
14
15
# File 'lib/segment/analytics.rb', line 12

def initialize options = {}
  Request.stub = options[:stub] if options.has_key?(:stub)
  @client = Segment::Analytics::Client.new options
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

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



17
18
19
20
21
22
23
# File 'lib/segment/analytics.rb', line 17

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?(method_name, include_private = false) ⇒ Boolean

Returns:

  • (Boolean)


25
26
27
# File 'lib/segment/analytics.rb', line 25

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