module Codecom

Constants

VERSION

Attributes

configuration[RW]

Public Class Methods

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

Describe here what the method should be used for. Remember to add use case examples if possible.

@author Yassine Zenati

Examples:

self.configure
#=> @return Expected returned value

@return [Class] Describe what the method should return.

# File lib/codecom.rb, line 23
def self.configure
  self.configuration ||= Configuration.new
  yield(configuration)
end