Sha256: 943d95ae9d993fd2d9edcf6facc4543c3fab9d53800b2080ffc80b6a1b7d3c80

Contents?: true

Size: 1001 Bytes

Versions: 15

Compression:

Stored size: 1001 Bytes

Contents

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
    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()
    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

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
card-1.97.0.1 mod/machines/set/right/machine_output.rb
card-1.97.0 mod/machines/set/right/machine_output.rb
card-1.96.8 mod/machines/set/right/machine_output.rb
card-1.96.7 mod/machines/set/right/machine_output.rb
card-1.96.6 mod/machines/set/right/machine_output.rb
card-1.96.5 mod/machines/set/right/machine_output.rb
card-1.96.4 mod/machines/set/right/machine_output.rb
card-1.96.3 mod/machines/set/right/machine_output.rb
card-1.96.2 mod/machines/set/right/machine_output.rb
card-1.96.1 mod/machines/set/right/machine_output.rb
card-1.96.0 mod/machines/set/right/machine_output.rb
card-1.95.3 mod/machines/set/right/machine_output.rb
card-1.95.2 mod/machines/set/right/machine_output.rb
card-1.95.1 mod/machines/set/right/machine_output.rb
card-1.95.0 mod/machines/set/right/machine_output.rb