Sha256: 0b8844d946e5b2e20f7998353d90d3ff5c6040dad8d8952d8783171e36858fe0

Contents?: true

Size: 657 Bytes

Versions: 2

Compression:

Stored size: 657 Bytes

Contents

controller :my_controller do
  spots "content", "alt"

  action :index do
    on_entry %{
      Embed("my_controller2", "content", {});

      find_view_res = find_view(__base__, {
        "my_controller2": {
           "__leaf__": "foo",
           "my_controller3": {
             "__leaf__": "foo2"
           }
        },
      });
    }
  end
end

controller :my_controller2 do
  spots "content"

  action :index do
    on_entry %{
      my_controller2_base = __base__;
      Embed("my_controller3", "content", {});
    }
  end
end

controller :my_controller3 do
  action :index do
    on_entry %{
      my_controller3_base = __base__;
    }
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
flok-0.0.105 spec/kern/assets/find_view/controller1a.rb
flok-0.0.103 spec/kern/assets/find_view/controller1a.rb