Sha256: 3f878c87b96f48adebe419b5f6a8409d776b25d5db41eb90ab7bc8e235b566d0

Contents?: true

Size: 793 Bytes

Versions: 2

Compression:

Stored size: 793 Bytes

Contents

controller :my_controller do
  spots "content"

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

      find_view_res = find_view(__base__, {
        "+": {
          "my_controller4": {
             "__leaf__": "foo"
          }
        }
      });
    }
  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
  spots "content"

  action :index do
    on_entry %{
      my_controller3_base = __base__;

      Embed("my_controller4", "content", {});
    }
  end
end

controller :my_controller4 do
  action :index do
    on_entry %{
      my_controller4_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/controller5.rb
flok-0.0.103 spec/kern/assets/find_view/controller5.rb