Wyatt Ades

Results 1 comments of Wyatt Ades

The following worked for me: ```ruby my_block = proc do |users| table_for users do ... end end collection_action :example do args = [User.all] html = Arbre::Context.new({}, view_context).instance_exec(*args, &my_block) render html:...