Sha256: 1e71bb2fe42ddf228029058cef6e92841f559d32a304376a37e30a3aa2c14dd2

Contents?: true

Size: 279 Bytes

Versions: 3

Compression:

Stored size: 279 Bytes

Contents

class RubyModules < Netzke::Base
  module ExtraStuff
    extend ActiveSupport::Concern

    included do
      component :endpoints
    end

    # Let's add another tab with a Netzke component in it
    def configure(c)
      super
      c.items += [:endpoints]
    end
  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/ruby_modules/extra_stuff.rb
netzke-core-0.8.3 test/core_test_app/app/components/ruby_modules/extra_stuff.rb
netzke-core-0.8.2 test/core_test_app/app/components/ruby_modules/extra_stuff.rb