iowa-scheduler 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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c396531658110bfe245123bba766bd473c30a625dcdb8d1e03cafbac2671bab8
4
+ data.tar.gz: 67d25885edf3a8257b5b09b70eb3bb29eea3a66a1f57db3788e19609e854ca12
5
+ SHA512:
6
+ metadata.gz: aad5a16b64a45fb1595b6a0f4256864b71f78d2dfce930fca393927e258247ccb35bad74899144eff7f2d9562283eca37aba53974473304346b10eb612052790
7
+ data.tar.gz: 6cdaaea1ed8fdcb1e9820619b0073cf19367677f845e29633362c16d0e62fd9b2eea740f4961105c48776eacb8ecd26c01f34798bbf96166acc1436d0ba6cf35
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2018 Iowa Scheduler
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'iowa'
@@ -0,0 +1,3 @@
1
+ require_relative 'iowa/version'
2
+
3
+ require_relative 'iowa/boot'
File without changes
@@ -0,0 +1,23 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: message.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_message "TaskDone" do
8
+ optional :id, :string, 1
9
+ optional :name, :string, 2
10
+ optional :data, :string, 3
11
+ optional :time, :string, 4
12
+ end
13
+ add_message "TaskPublish" do
14
+ optional :id, :string, 1
15
+ optional :name, :string, 2
16
+ optional :data, :string, 3
17
+ optional :time, :string, 4
18
+ optional :ttl, :uint32, 5
19
+ end
20
+ end
21
+
22
+ TaskDone = Google::Protobuf::DescriptorPool.generated_pool.lookup("TaskDone").msgclass
23
+ TaskPublish = Google::Protobuf::DescriptorPool.generated_pool.lookup("TaskPublish").msgclass
@@ -0,0 +1,3 @@
1
+ module Iowa
2
+ VERSION = '0.0.1'.freeze
3
+ end
@@ -0,0 +1,18 @@
1
+ syntax = "proto3";
2
+
3
+ // protoc -I ./proto --ruby_out ./lib/iowa/protos proto/*.proto
4
+
5
+ message TaskDone {
6
+ string id = 1;
7
+ string name = 2;
8
+ string data = 3;
9
+ string time = 4;
10
+ }
11
+
12
+ message TaskPublish {
13
+ string id = 1;
14
+ string name = 2;
15
+ string data = 3;
16
+ string time = 4;
17
+ uint32 ttl = 5;
18
+ }
metadata ADDED
@@ -0,0 +1,80 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: iowa-scheduler
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Iowa
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-02-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: midori.rb
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.5'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: protobuf
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '3.8'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '3.8'
41
+ description: Distributed Offline Data Pipeline Scheduler
42
+ email: dsh0416@gmail.com
43
+ executables:
44
+ - iowa
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - LICENSE
49
+ - bin/iowa
50
+ - lib/iowa.rb
51
+ - lib/iowa/boot.rb
52
+ - lib/iowa/protos/message_pb.rb
53
+ - lib/iowa/version.rb
54
+ - proto/message.proto
55
+ homepage: https://github.com/iowa-scheduler/iowa
56
+ licenses:
57
+ - MIT
58
+ metadata:
59
+ issue_tracker: https://github.com/iowa-scheduler/iowa/issues
60
+ post_install_message:
61
+ rdoc_options: []
62
+ require_paths:
63
+ - lib
64
+ required_ruby_version: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: 2.3.5
69
+ required_rubygems_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ requirements: []
75
+ rubyforge_project:
76
+ rubygems_version: 2.7.3
77
+ signing_key:
78
+ specification_version: 4
79
+ summary: Iowa Scheduler
80
+ test_files: []