Module: Copland::ConfigurationPoint::ConfigurationPointFunctionality::Fixated

Defined in:
lib/copland/configuration-point/common.rb

Overview

This module redefines certain methods of a configuration point so that the point cannot be modified in certain ways any more.

Instance Method Summary collapse

Instance Method Details

#fixate!Object

Does nothing, which means attempting to fixate a configuration point that has already been fixated will do nothing.



221
222
223
# File 'lib/copland/configuration-point/common.rb', line 221

def fixate!
  # does nothing
end

#fixated?Boolean

Returns true.

Returns:

  • (Boolean)


226
227
228
# File 'lib/copland/configuration-point/common.rb', line 226

def fixated?
  true
end