Sha256: 3f90271d77717cafd94cf7475197dda4d45669c9c4aa829f21427d43e99d09d1

Contents?: true

Size: 625 Bytes

Versions: 2

Compression:

Stored size: 625 Bytes

Contents

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

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

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

controller :my_controller2 do
  action :index do
    on_entry %{
      my_controller2_base = __base__;
    }
  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/controller1.rb
flok-0.0.103 spec/kern/assets/find_view/controller1.rb