Sha256: 0c706eae71517ea12ed0eb52f608df36616acaf171401ad8ed54deb6712723e1
Contents?: true
Size: 1.34 KB
Versions: 37
Compression:
Stored size: 1.34 KB
Contents
# -*- encoding : utf-8 -*- class Card; module Set; class Right; module MachineOutput; extend Card::Set # ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/machines/set/right/machine_output.rb ~~ def followable? false end def history? false end event :remove_codename, :prepare_to_validate, on: :delete, when: proc { |c| c.codename.present? } do # load file before deleting codename otherwise it will fail later attachment self.codename = nil end format do view :not_found do |args| if update_machine_output_live? Card::Cache.reset_all # FIXME: wow, this is overkill, no? root.error_status = 302 card.left.update_machine_output card_path card.left.machine_output_url else super args end end def update_machine_output_live? case when !card.left.is_a?(Abstract::Machine) then false # must be a machine when card.left.locked? then false # machine must not be running when card.new_card? then true # always update if new else # must want current output (won't re-output old stuff) (selected_id = card.selected_action_id) && selected_id == card.last_action_id end end end # ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/machines/set/right/machine_output.rb ~~ end;end;end;end;
Version data entries
37 entries across 37 versions & 1 rubygems