jongleur 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 749c9b43f797c10a6bbba43ab6fc74fbf9d5b430
4
- data.tar.gz: 41077a42d773e8bd23d8446963beec566e118199
3
+ metadata.gz: 2e20f2d0349a66d4212d5745ad7cb2d86ddb8773
4
+ data.tar.gz: 203ce48830545722f46d164f1652fe37226b6c37
5
5
  SHA512:
6
- metadata.gz: 6abc365ad553864cfaf5d8113a24a981abd5676e58789268fe2e95ee3a246038c083c893fa9977b87a0c4b08c04f2ba0fd16ff5c3d8aaa2842baef156cdc51de
7
- data.tar.gz: 12dba9ec3a9f5d888b04c80234bf7a1becff58145fff7d2544ba027118b02803ea15672cef44594146c8842968c765e03d8563cecae5de93dd23f1fe90730ad3
6
+ metadata.gz: 2203060ada7a318494a00e0388a8ea27b8405833cb175c05b11cb7560b210d62f74a9e5ff026c9edb02f61879f7acc2ebbf4807cfc07db7797aa4e2a6c6ec614
7
+ data.tar.gz: 6718890be9449bbe523ed2174351bf00771a66850eb8c2125e3a493b7ee7e4c36b6093ee254c6aac49478fd2a357fcbd98001442e82d90fc4709b1477ad317bd
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
- # Jongleur
1
+ # Jongleur [![Gem Version](https://badge.fury.io/rb/jongleur.svg)](https://badge.fury.io/rb/jongleur)
2
2
  <img src="./bin/img/jongleur_m-2015.jpg" width="150" height="150">
3
3
 
4
+
4
5
  Jongleur is a process scheduler and manager. It allows its users to declare a number of executable tasks as Ruby classes, define precedence between those tasks and run each task as a separate process.
5
6
 
6
7
  Jongleur is particularly useful for implementing workflows modeled as a [DAG](https://en.wikipedia.org/wiki/Directed_acyclic_graph)
@@ -10,8 +10,8 @@ Gem::Specification.new do |spec|
10
10
  spec.authors = ['Fred Heath']
11
11
  spec.email = ['fred@bootstrap.me.uk']
12
12
 
13
- spec.summary = 'A task scheduler manager for DAG-style task groups.'
14
- spec.description = 'Acceps a number of inter-dependent tasks and runs them as separate processes, parallelising where possible.'
13
+ spec.summary = 'A multi-processing task scheduler and manager.'
14
+ spec.description = 'Launches, schedules and manages tasks represented in a DAG as multiple processes'
15
15
  spec.homepage = 'http://www.bootstrap.me.uk'
16
16
  spec.license = 'MIT'
17
17
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Jongleur
4
- VERSION = '1.0.1'
4
+ VERSION = '1.0.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jongleur
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fred Heath
@@ -136,8 +136,8 @@ dependencies:
136
136
  - - "~>"
137
137
  - !ruby/object:Gem::Version
138
138
  version: '0.9'
139
- description: Acceps a number of inter-dependent tasks and runs them as separate processes,
140
- parallelising where possible.
139
+ description: Launches, schedules and manages tasks represented in a DAG as multiple
140
+ processes
141
141
  email:
142
142
  - fred@bootstrap.me.uk
143
143
  executables: []
@@ -189,5 +189,5 @@ rubyforge_project:
189
189
  rubygems_version: 2.6.14
190
190
  signing_key:
191
191
  specification_version: 4
192
- summary: A task scheduler manager for DAG-style task groups.
192
+ summary: A multi-processing task scheduler and manager.
193
193
  test_files: []