Module: Fugle::HTTP::API Private

Included in:
Intraday::Chart, Intraday::Meta, Intraday::Quote, Intraday::Trades
Defined in:
lib/fugle/http/api.rb

Overview

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Since:

  • 0.1.0

Defined Under Namespace

Modules: ClassMethods

Constant Summary collapse

ENDPOINT =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Since:

  • 0.1.0

'https://api.fugle.tw/realtime'
VERSION =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Since:

  • 0.1.0

'v0'

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Since:

  • 0.1.0



21
22
23
24
25
26
27
28
# File 'lib/fugle/http/api.rb', line 21

def self.included(base)
  base.class_eval do
    @_path = nil
    @_parameters = Parameters.new

    extend ClassMethods
  end
end