module Yukata

Constants

VERSION

Public Class Methods

coercer() click to toggle source
# File lib/yukata.rb, line 10
def self.coercer
  return @coercer if @coercer
  @coercer = Yukata::Coercer.new
  Yukata::Coercions.bind_to(@coercer)
  @coercer
end
coercer=(coercer) click to toggle source
# File lib/yukata.rb, line 17
def self.coercer=(coercer)
  @coercer = coercer
end