Class: WrAPI::API
- Inherits:
-
Object
- Object
- WrAPI::API
- Includes:
- Authentication, Connection, Request
- Defined in:
- lib/wrapi/api.rb
Constant Summary
Constants included from Request
Instance Method Summary collapse
- #config ⇒ Object
-
#initialize(options = {}) ⇒ API
constructor
Creates a new API and copies settings from singleton.
Methods included from Authentication
Methods included from Request
#delete, #get, #get_paged, #is_json?, #post, #put
Constructor Details
#initialize(options = {}) ⇒ API
Creates a new API and copies settings from singleton
13 14 15 16 17 18 |
# File 'lib/wrapi/api.rb', line 13 def initialize( = {}) = WrAPI..merge() WrAPI::Configuration::VALID_OPTIONS_KEYS.each do |key| send("#{key}=", [key]) end end |
Instance Method Details
#config ⇒ Object
20 21 22 23 24 25 26 |
# File 'lib/wrapi/api.rb', line 20 def config conf = {} WrAPI::Configuration::VALID_OPTIONS_KEYS.each do |key| conf[key] = send key end conf end |