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.
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.
'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.
'v0'
Class Method Summary collapse
- .included(base) ⇒ Object private
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.
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 |