Sha256: 7db88a1776ab85d7165bd5a9ea377f1e274bdd280f7e536b9af342ae7ef8d627

Contents?: true

Size: 405 Bytes

Versions: 42

Compression:

Stored size: 405 Bytes

Contents

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

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

    on "test_event", %{
      Push("my_other_action")
    }
  end

  action :my_other_action do
    on_entry %{
      my_other_action_on_entry_called = true;
    }
  end
end

controller :my_controller2 do
  action :my_action do
    on_entry %{
    }
  end
end

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
flok-0.0.64 spec/kern/assets/push.rb
flok-0.0.63 spec/kern/assets/push.rb