module NCMB

Constants

API_VERSION
DOMAIN

Public Class Methods

initialize(params = {}) click to toggle source
# File lib/ncmb/client.rb, line 129
def NCMB.initialize(params = {})
  defaulted = {
    application_key: ENV["NCMB_APPLICATION_KEY"],
    client_key:      ENV["NCMB_CLIENT_KEY"]
  }
  defaulted.merge!(params)
  @@client = Client.new(defaulted)
end