Sha256: eda7438436db94833dd2cc0f40ab1d6c3b30da20ac7509fbf88dece64cd1bd0d
Contents?: true
Size: 1.17 KB
Versions: 4
Compression:
Stored size: 1.17 KB
Contents
module Redcar class Command class Executor include Redcar::Core::HasLogger def self.current_environment win = Redcar.app.focussed_window tab = Redcar.app.focussed_notebook_tab { :win => win, :tab => tab } end def initialize(command_instance, options={}) @command_instance = command_instance @options = options end def execute @command_instance.environment(Executor.current_environment) begin result = @command_instance.execute rescue Object => e @command_instance.error = e print_command_error(e) rescue java.lang.StackOverflowError => e @command_instance.error = e print_command_error(e) end record result end private def print_command_error(e) puts "Error in command #{@command_instance.class}" puts e.class.to_s + ": " + e.message.to_s puts e.backtrace end def record if Redcar.app.history Redcar.app.history.record(@command_instance) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems