Sha256: cee309831d663a8fc1ef6e649bc3622c3e6b44eb492ea5636eaca51fdc60ec0c
Contents?: true
Size: 501 Bytes
Versions: 22
Compression:
Stored size: 501 Bytes
Contents
module CanTango class Configuration class Engines class Store include ClassExt include CanTango::Configuration::Factory def type_options {:type => default_type} end def default_type= type raise ArgumentError, "Must be a String or Symbol, was #{type}" if !type.kind_of_label? @default_type = type.to_sym end def default_type @default_type || :memory end end end end end
Version data entries
22 entries across 22 versions & 1 rubygems