Sha256: d0334f455fc21ce88a5ca8d7214db99c5762cd53328e23cc9bb65ae8072fdf0f

Contents?: true

Size: 433 Bytes

Versions: 3

Compression:

Stored size: 433 Bytes

Contents

controller :my_controller do
  spots "hello", "world"

  action :my_action do
    on_entry %{
      Embed("my_other_controller", "hello", {});
    }

    on "next", %{
      Goto("my_other_action");
    }
  end

  action :my_other_action do
    on_entry %{
    }

    on "next", %{
      Goto("my_action");
    }
  end

end

controller :my_other_controller do
  services :spec

  action :my_action do
    on_entry %{
    }
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
flok-0.0.40 spec/kern/assets/service_controller1.rb
flok-0.0.39 spec/kern/assets/service_controller1.rb
flok-0.0.38 spec/kern/assets/service_controller1.rb