Sha256: 39f1e8c7e4c0f907d1016e11fc467017fa3b0793d549fca75f4d0a5bbff6be05

Contents?: true

Size: 224 Bytes

Versions: 3

Compression:

Stored size: 224 Bytes

Contents

# For demo purposes. Not used in testing.
class SimpleComposite < Netzke::Base
  def configure(c)
    c.layout = :fit
    c.items = [:child]
    super
  end

  component :child do |c|
    c.klass = SimpleComponent
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
netzke-core-0.8.4 test/core_test_app/app/components/simple_composite.rb
netzke-core-0.8.3 test/core_test_app/app/components/simple_composite.rb
netzke-core-0.8.2 test/core_test_app/app/components/simple_composite.rb