Sha256: 3483daedcba5a013cdcaeb1eb3ef75a8acdbd95727603fdfc0c783d49120a16d
Contents?: true
Size: 613 Bytes
Versions: 61
Compression:
Stored size: 613 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 spots "content" services :spec action :my_action do on_entry %{ Embed("my_other2_controller", "content", {}); } end end controller :my_other2_controller do services :spec action :my_action do on_entry %{ } end end
Version data entries
61 entries across 61 versions & 1 rubygems