module DevmeSdk

DEV.ME API Documentation

DEV.ME API Documentation [Currency Conversion and Exchange Rates API](dev.me/products/currency) - [IP2Location, IP Country, IP Information API](dev.me/products/ip) - [Email Validation, Mailbox Verification](dev.me/products/email) - [Phone Number Validation](dev.me/products/phone). You can learn more at [dev.me](dev.me). For this example you can use api key ‘demo-key` to test the APIs

The version of the OpenAPI document: 1.0.0 Contact: support@dev.me

DEV.ME API Documentation

DEV.ME API Documentation [Currency Conversion and Exchange Rates API](dev.me/products/currency) - [IP2Location, IP Country, IP Information API](dev.me/products/ip) - [Email Validation, Mailbox Verification](dev.me/products/email) - [Phone Number Validation](dev.me/products/phone). You can learn more at [dev.me](dev.me). For this example you can use api key ‘demo-key` to test the APIs

The version of the OpenAPI document: 1.0.0 Contact: support@dev.me

DEV.ME API Documentation

DEV.ME API Documentation [Currency Conversion and Exchange Rates API](dev.me/products/currency) - [IP2Location, IP Country, IP Information API](dev.me/products/ip) - [Email Validation, Mailbox Verification](dev.me/products/email) - [Phone Number Validation](dev.me/products/phone). You can learn more at [dev.me](dev.me). For this example you can use api key ‘demo-key` to test the APIs

The version of the OpenAPI document: 1.0.0 Contact: support@dev.me

Constants

VERSION

Public Class Methods

configure() { |default| ... } click to toggle source

Customize default settings for the SDK using block.

DevmeSdk.configure do |config|
  config.username = "xxx"
  config.password = "xxx"
end

If no block given, return the default Configuration object.

# File lib/devme-sdk-ruby.rb, line 54
def configure
  if block_given?
    yield(Configuration.default)
  else
    Configuration.default
  end
end