module Epom

Constants

VERSION

Public Class Methods

config() click to toggle source

Global settings for Epom

# File lib/epom/config.rb, line 13
def self.config
  @config
end
configure() { |config ||= configuration| ... } click to toggle source

Configures global settings for Epom

Epom.configure do |config|
  config.epom_server = 'https://n29.epom.com/'
end
# File lib/epom/config.rb, line 8
def self.configure(&block)
  yield @config ||= Epom::Configuration.new
end
create_hash(*args) click to toggle source
# File lib/epom.rb, line 21
def self.create_hash(*args)
      md5 = Digest::MD5.new
  md5 << args.join
      md5.hexdigest
end