gtoolkit-executor

Description

Common logic to compose and execute tasks written as commands

Details

Source
GitHub
Dialect
pharo (40% confidence)
License
MIT
Created
April 3, 2020
Updated
April 7, 2020
Topics
gtoolkit pharo smalltalk

Categories

System / OS

README excerpt

# GToolkit Executor

Common logic to compose and execute tasks written as commands. It handles errors, background executions, and debugging tools.

## Installation 

### In GToolkit 

```
EpMonitor current disableDuring: 
[
Metacello new
   baseline: 'GToolkitExecutor';
   repository: 'github://feenkcom/gtoolkit-executor/src';
   load.
]
```

### In Pharo (loading GToolkit too)

```
EpMonitor current disableDuring: 
[
Metacello new
   baseline: 'GToolkitExecutorWithGT';
   repository: 'github://feenkcom/gtoolkit-executor/src';
   load.
]
```
← Back to results