module KManager

Constants

VERSION

Attributes

target_resource[RW]

Instance of the currently focused resource if document get created dynamically due to class_eval then they can attach themselves to the currently focussed resource via KManager.target_resource.add_document(document)

Public Class Methods

new_project_config(&block) click to toggle source
# File lib/k_manager.rb, line 31
def new_project_config(&block)
  config = KManager::Configuration::ProjectConfig.new
  block.call(config) if block_given?
  config
end