excadg 0.1.1 → 0.1.3
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 +4 -4
- data/README.md +2 -0
- metadata +24 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec293c45ae406af7c9b65765b6b755680006b2883faceef34a79cb3856fc5337
|
4
|
+
data.tar.gz: 56f54c58453d79dc7cdf457756c9afaccc8ebe88320464fab34e7c9a0f0a49fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d32612798b22716343e841c9915b3b599a3f08d800843f4381b4b43acba7c91c75ef80523b7bdcad3d5d5305a2542848e1b8186017a8302eb19c77019c0e1e0e
|
7
|
+
data.tar.gz: 8c8a2be23aabd61ffc546c81e256497d796aeaab60c7ce804fe9b5e9f2abc6a7223770fd6376396fd436815f48bc615fc4d731678129c93c0eeff2c2e676f412
|
data/README.md
CHANGED
@@ -144,6 +144,8 @@ There is a gem specification. Typical commands:
|
|
144
144
|
- install / uninstall gem built locally: `gem install ./excadg*.gem` / `gem uninstall excadg`
|
145
145
|
- publish: `gem push excadg*.gem`
|
146
146
|
|
147
|
+
Latest version is published here: https://rubygems.org/gems/excadg.
|
148
|
+
|
147
149
|
## Testing
|
148
150
|
|
149
151
|
Test are located in [spec/](spec/) folder and are written using rspec.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: excadg
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- skorobogatydmitry
|
@@ -9,13 +9,28 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
date: 2024-07-06 00:00:00.000000000 Z
|
12
|
-
dependencies:
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rgl
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.6'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0.6'
|
27
|
+
description: "\n\nThat's a library (framework) to execute a graph of dependent tasks
|
28
|
+
(vertices). \nIts main feature is to run all possible tasks independently in parallel
|
29
|
+
once they're ready. \nAnother feature is that the graph is dynamic and any vertex
|
30
|
+
could produce another vertice(s) to extend execution graph.\n"
|
17
31
|
email: skorobogaty.dmitry@gmail.com
|
18
|
-
executables:
|
32
|
+
executables:
|
33
|
+
- excadg
|
19
34
|
extensions: []
|
20
35
|
extra_rdoc_files: []
|
21
36
|
files:
|
@@ -39,7 +54,8 @@ files:
|
|
39
54
|
homepage: https://rubygems.org/gems/excadg
|
40
55
|
licenses:
|
41
56
|
- LGPL-3.0-only
|
42
|
-
metadata:
|
57
|
+
metadata:
|
58
|
+
source_code: https://github.com/skorobogatydmitry/excadg
|
43
59
|
post_install_message:
|
44
60
|
rdoc_options: []
|
45
61
|
require_paths:
|