module Bloopi

Constants

VERSION

Public Class Methods

config() click to toggle source

See Bloopi::Configuration.

# File lib/bloopi.rb, line 20
def config
  @config ||= Configuration.new
end
configure() { |config| ... } click to toggle source
# File lib/bloopi.rb, line 15
def configure
  yield config
end
make_request(path, args, verb, options = {}) click to toggle source
# File lib/bloopi.rb, line 25
      def self.make_request(path, args, verb, options = {})
  HTTPService.make_request(HTTPService::Request.new(path: path, args: args, verb: verb, options: options))
end