Module: Blupee
- Defined in:
- lib/blupee.rb,
lib/blupee/auth.rb,
lib/blupee/errors.rb,
lib/blupee/version.rb,
lib/blupee/api/ether.rb,
lib/blupee/api/token.rb,
lib/blupee/api/omise_go.rb,
lib/blupee/http_service.rb,
lib/blupee/http_service/request.rb,
lib/blupee/http_service/response.rb
Defined Under Namespace
Modules: API, HTTPService Classes: Auth, BlupeeError, Configuration
Constant Summary collapse
- VERSION =
"0.1.5"
Class Method Summary collapse
-
.config ⇒ Object
See Blupee::Configuration.
- .configure {|config| ... } ⇒ Object
- .make_request(path, args, verb, options = {}) ⇒ Object
Class Method Details
.config ⇒ Object
See Blupee::Configuration.
20 21 22 |
# File 'lib/blupee.rb', line 20 def config @config ||= Configuration.new end |
.configure {|config| ... } ⇒ Object
15 16 17 |
# File 'lib/blupee.rb', line 15 def configure yield config end |
.make_request(path, args, verb, options = {}) ⇒ Object
25 26 27 |
# File 'lib/blupee.rb', line 25 def self.make_request(path, args, verb, = {}) HTTPService.make_request(HTTPService::Request.new(path: path, args: args, verb: verb, options: )) end |