Sha256: d22b5270825f48654426e06ec94612e4bdfa98587d9007b4862be6afe7af9701
Contents?: true
Size: 587 Bytes
Versions: 31
Compression:
Stored size: 587 Bytes
Contents
controller :my_controller do services :test spots "content" action :my_action do on_entry %{ Embed("other", "content", {}); } on "next", %{ Goto("my_other_action") } end action :my_other_action do on_entry %{ Embed("other2", "content", {}); } end end controller :other do services :test action :index do on_entry %{ other_bp = __base__; kern_log("My bp is: " + __base__) } end end controller :other2 do services :test action :index do on_entry %{ other_bp2 = __base__; } end end
Version data entries
31 entries across 31 versions & 1 rubygems