module Namira

A Ruby HTTP client

Constants

VERSION

The current version of Namira

Public Class Methods

config() click to toggle source
# File lib/namira/config.rb, line 80
def self.config
  @config ||= Config.new
  @config
end
configure() { |config| ... } click to toggle source

The shared configuration

# File lib/namira/config.rb, line 75
def self.configure
  yield(config) if block_given?
  config
end