class PG::Coder

def initialize(hash=nil, **kwargs)

Create a new coder object based on the attribute Hash.
def initialize(hash=nil, **kwargs)
	warn("PG::Coder.new(hash) is deprecated. Please use keyword arguments instead! Called from #{caller.first}", category: :deprecated) if hash
	(hash || kwargs).each do |key, val|
		send("#{key}=", val)
	end
end