flowfile 0.0.1
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 +7 -0
- data/CHANGELOG.md +3 -0
- data/Manifest.txt +5 -0
- data/README.md +20 -0
- data/Rakefile +26 -0
- data/lib/flowfile.rb +5 -0
- metadata +89 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 2c1ca30a71dbde0501a358c583726179cfd7f992
|
|
4
|
+
data.tar.gz: e877abbdb2076059b834e8d561824974004490a9
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 52a8290d88fdfd98e8f33d23c6e0086efedd19ef01d848fa7522b9c32a51fefd98aa976a2aef3314caf755c6c5e5ccc96688f1a3f33e8fafd6eccd741515d355
|
|
7
|
+
data.tar.gz: ea010f01eca4deee2bbc95a84ee26d4e2caf4f181be50abd120e9f4fc673aacc3a166950f65b4f8192cc14828b8a3e1b5fa4f8bc14642c342091c38200cc6774
|
data/CHANGELOG.md
ADDED
data/Manifest.txt
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# flowfile - read in / parse (work)flow definitions with steps, actions, and more
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
* home :: [github.com/rubycoco/git](https://github.com/rubycoco/git)
|
|
5
|
+
* bugs :: [github.com/rubycoco/git/issues](https://github.com/rubycoco/git/issues)
|
|
6
|
+
* gem :: [rubygems.org/gems/flowfile](https://rubygems.org/gems/flowfile)
|
|
7
|
+
* rdoc :: [rubydoc.info/gems/flowfile](http://rubydoc.info/gems/flowfile)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
To be done
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## License
|
|
17
|
+
|
|
18
|
+
The `flowfile` scripts are dedicated to the public domain.
|
|
19
|
+
Use it as you please with no restrictions whatsoever.
|
|
20
|
+
|
data/Rakefile
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
require 'hoe'
|
|
2
|
+
|
|
3
|
+
Hoe.spec 'flowfile' do
|
|
4
|
+
|
|
5
|
+
self.version = '0.0.1' # note: for now add version inline
|
|
6
|
+
|
|
7
|
+
self.summary = "flowfile - read in / parse (work)flow definitions with steps, actions, and more"
|
|
8
|
+
self.description = summary
|
|
9
|
+
|
|
10
|
+
self.urls = { home: 'https://github.com/rubycoco/git' }
|
|
11
|
+
|
|
12
|
+
self.author = 'Gerald Bauer'
|
|
13
|
+
self.email = 'opensport@googlegroups.com'
|
|
14
|
+
|
|
15
|
+
# switch extension to .markdown for gihub formatting
|
|
16
|
+
self.readme_file = 'README.md'
|
|
17
|
+
self.history_file = 'CHANGELOG.md'
|
|
18
|
+
|
|
19
|
+
self.licenses = ['Public Domain']
|
|
20
|
+
|
|
21
|
+
self.extra_deps = []
|
|
22
|
+
|
|
23
|
+
self.spec_extras = {
|
|
24
|
+
required_ruby_version: '>= 2.2.2'
|
|
25
|
+
}
|
|
26
|
+
end
|
data/lib/flowfile.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: flowfile
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Gerald Bauer
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2020-10-29 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rdoc
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '4.0'
|
|
20
|
+
- - "<"
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: '7'
|
|
23
|
+
type: :development
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '4.0'
|
|
30
|
+
- - "<"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '7'
|
|
33
|
+
- !ruby/object:Gem::Dependency
|
|
34
|
+
name: hoe
|
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '3.22'
|
|
40
|
+
type: :development
|
|
41
|
+
prerelease: false
|
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '3.22'
|
|
47
|
+
description: flowfile - read in / parse (work)flow definitions with steps, actions,
|
|
48
|
+
and more
|
|
49
|
+
email: opensport@googlegroups.com
|
|
50
|
+
executables: []
|
|
51
|
+
extensions: []
|
|
52
|
+
extra_rdoc_files:
|
|
53
|
+
- CHANGELOG.md
|
|
54
|
+
- Manifest.txt
|
|
55
|
+
- README.md
|
|
56
|
+
files:
|
|
57
|
+
- CHANGELOG.md
|
|
58
|
+
- Manifest.txt
|
|
59
|
+
- README.md
|
|
60
|
+
- Rakefile
|
|
61
|
+
- lib/flowfile.rb
|
|
62
|
+
homepage: https://github.com/rubycoco/git
|
|
63
|
+
licenses:
|
|
64
|
+
- Public Domain
|
|
65
|
+
metadata: {}
|
|
66
|
+
post_install_message:
|
|
67
|
+
rdoc_options:
|
|
68
|
+
- "--main"
|
|
69
|
+
- README.md
|
|
70
|
+
require_paths:
|
|
71
|
+
- lib
|
|
72
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
73
|
+
requirements:
|
|
74
|
+
- - ">="
|
|
75
|
+
- !ruby/object:Gem::Version
|
|
76
|
+
version: 2.2.2
|
|
77
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '0'
|
|
82
|
+
requirements: []
|
|
83
|
+
rubyforge_project:
|
|
84
|
+
rubygems_version: 2.5.2
|
|
85
|
+
signing_key:
|
|
86
|
+
specification_version: 4
|
|
87
|
+
summary: flowfile - read in / parse (work)flow definitions with steps, actions, and
|
|
88
|
+
more
|
|
89
|
+
test_files: []
|