class Configliere::ParamParent

We want to be able to call super() on these methods in all included models, so we define them in this parent shim class.

Public Instance Methods

export() click to toggle source

default export method: dup of self

# File lib/configliere/param.rb, line 8
def export
  dup.tap{|hsh| hsh.each{|k,v| hsh[k] = v.respond_to?(:export) ? v.export : v } }
end
resolve!() click to toggle source

terminate resolution chain @return self

# File lib/configliere/param.rb, line 14
def resolve!
  self
end
validate!() click to toggle source

terminate validation chain. @return self

# File lib/configliere/param.rb, line 20
def validate!
  self
end