netzke/netzke-core

View on GitHub
lib/netzke/core/dsl_config_base.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Netzke::Core
  # Base for ActionConfig, ComponentConfig, etc
  class DslConfigBase < ActiveSupport::OrderedOptions
    def initialize(name, component)
      @component = component
      @name = self.name = name.to_s
    end
  end
end