module Comodule::ConfigSupport::ClassMethods

Public Instance Methods

create_config(config_hash={}) click to toggle source
# File lib/comodule/config_support.rb, line 130
def create_config(config_hash={})
  Comodule::ConfigSupport::Config.new config_hash
end
create_config_hard(config_hash={}) click to toggle source
# File lib/comodule/config_support.rb, line 134
def create_config_hard(config_hash={})
  config_hash[:configure_type] = :hard
  create_config config_hash
end
create_config_soft(config_hash={}) click to toggle source
# File lib/comodule/config_support.rb, line 139
def create_config_soft(config_hash={})
  config_hash[:configure_type] = :soft
  create_config config_hash
end