module Mutations

Constants

VERSION

Public Class Methods

cache_constants=(val) click to toggle source
# File lib/mutations.rb, line 37
def cache_constants=(val)
  @cache_constants = val
end
cache_constants?() click to toggle source
# File lib/mutations.rb, line 41
def cache_constants?
  @cache_constants
end
error_message_creator() click to toggle source
# File lib/mutations.rb, line 29
def error_message_creator
  @error_message_creator ||= DefaultErrorMessageCreator.new
end
error_message_creator=(creator) click to toggle source
# File lib/mutations.rb, line 33
def error_message_creator=(creator)
  @error_message_creator = creator
end