hoze 0.1.0
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/.gitignore +12 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +54 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/hoze +3 -0
- data/hoze.gemspec +38 -0
- data/lib/hoze/cli.rb +16 -0
- data/lib/hoze/configuration.rb +50 -0
- data/lib/hoze/interface/message.rb +29 -0
- data/lib/hoze/interface/source.rb +13 -0
- data/lib/hoze/pubsub/message.rb +47 -0
- data/lib/hoze/pubsub/source.rb +62 -0
- data/lib/hoze/source_factory.rb +22 -0
- data/lib/hoze/version.rb +3 -0
- data/lib/hoze/worker.rb +39 -0
- data/lib/hoze.rb +8 -0
- metadata +123 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 13ccaea71486a72b78f2c505eee8c33f6262ef22
|
4
|
+
data.tar.gz: 101857b73c29bfc24f96b8be3392fe76f2708da2
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: bf093a19e8b9f0633d73e19ae631dad346a323fd8ec5cc4174ae1040520d4ab3b98b1831fbac6cb91d0df1610796b67533ced7d8377f8f50d80a6d74b8d6f72c
|
7
|
+
data.tar.gz: b820e09cf639dc65e49cf919ad0859d49a13a2bdc6919125dde6765ad2d01991530809ac847b3ce419e1666d834749b5ceb7f9f3d95ec1a98092dcb55c6cdf26
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 pluce
|
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
|
13
|
+
all 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
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
# Hoze
|
2
|
+
|
3
|
+
Hoze is a runtime that helps implementing asynchronous jobs on top of Google Pub/Sub cloud queue system. Write your logic, Hoze takes care of plumbing.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'hoze'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle install --binstubs
|
16
|
+
|
17
|
+
## Usage
|
18
|
+
|
19
|
+
Write a simple worker file `worker.rb`:
|
20
|
+
|
21
|
+
```ruby
|
22
|
+
Hoze.worker
|
23
|
+
.configure do |config|
|
24
|
+
# You can use env variable for each property to overload hardcoded values
|
25
|
+
config.channel = "my.pubsub.topic" # HOZE_CONFIG_CHANNEL
|
26
|
+
config.key = "my.subscription.name" # HOZE_CONFIG_KEY
|
27
|
+
config.connector.type = "pubsub" # HOZE_CONFIG_CONNECTOR_TYPE
|
28
|
+
config.connector.project = "my-gcp-project" # HOZE_CONFIG_CONNECTOR_PROJECT
|
29
|
+
config.connector.path_to_key = "/path/to/keyfile.json" # HOZE_CONFIG_CONNECTOR_PATH_TO_KEY
|
30
|
+
end
|
31
|
+
.process do |message|
|
32
|
+
puts "Hello #{message.payload} !"
|
33
|
+
end
|
34
|
+
```
|
35
|
+
|
36
|
+
And now run it:
|
37
|
+
|
38
|
+
```shell
|
39
|
+
bundle exec hoze worker.rb
|
40
|
+
```
|
41
|
+
|
42
|
+
## Development
|
43
|
+
|
44
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
45
|
+
|
46
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
47
|
+
|
48
|
+
## Contributing
|
49
|
+
|
50
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/pluce/hoze.
|
51
|
+
|
52
|
+
## License
|
53
|
+
|
54
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "hoze"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/exe/hoze
ADDED
data/hoze.gemspec
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "hoze/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "hoze"
|
8
|
+
spec.version = Hoze::VERSION
|
9
|
+
spec.authors = ["pluce"]
|
10
|
+
spec.email = ["pluce@ventadis.fr"]
|
11
|
+
|
12
|
+
spec.summary = "Asynchronous job runtime backed by Google Pub Sub"
|
13
|
+
spec.description = "Asynchronous job runtime backed by Google Pub Sub"
|
14
|
+
spec.homepage = "https://github.com/pluce/hoze"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
18
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
19
|
+
if spec.respond_to?(:metadata)
|
20
|
+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
21
|
+
else
|
22
|
+
raise "RubyGems 2.0 or newer is required to protect against " \
|
23
|
+
"public gem pushes."
|
24
|
+
end
|
25
|
+
|
26
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
27
|
+
f.match(%r{^(test|spec|features)/})
|
28
|
+
end
|
29
|
+
spec.bindir = "exe"
|
30
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
31
|
+
spec.require_paths = ["lib"]
|
32
|
+
|
33
|
+
spec.add_development_dependency "bundler", "~> 1.15"
|
34
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
35
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
36
|
+
|
37
|
+
spec.add_dependency "google-cloud-pubsub", "~> 0.29.0"
|
38
|
+
end
|
data/lib/hoze/cli.rb
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
require "hoze"
|
2
|
+
|
3
|
+
script = ARGV[0]
|
4
|
+
|
5
|
+
unless script
|
6
|
+
puts "No worker script given"
|
7
|
+
exit 1
|
8
|
+
end
|
9
|
+
|
10
|
+
puts "Running with worker script #{script}"
|
11
|
+
|
12
|
+
script_path = Pathname.new(script).realpath
|
13
|
+
|
14
|
+
puts "Loading script from file #{script_path}"
|
15
|
+
|
16
|
+
require script_path
|
@@ -0,0 +1,50 @@
|
|
1
|
+
require "google/cloud/pubsub"
|
2
|
+
|
3
|
+
module Hoze
|
4
|
+
|
5
|
+
class Configuration
|
6
|
+
attr_accessor :channel, :key, :auto_ack, :connector, :max_tries
|
7
|
+
|
8
|
+
def initialize
|
9
|
+
@connector = ConnectorConfiguration.new
|
10
|
+
end
|
11
|
+
|
12
|
+
def channel
|
13
|
+
env_config('CHANNEL') || @channel
|
14
|
+
end
|
15
|
+
|
16
|
+
def key
|
17
|
+
env_config('KEY') || @key
|
18
|
+
end
|
19
|
+
|
20
|
+
private
|
21
|
+
|
22
|
+
def env_config name
|
23
|
+
return ENV["HOZE_CONFIG_#{name}"]
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
|
28
|
+
class ConnectorConfiguration
|
29
|
+
attr_accessor :type, :project, :path_to_key
|
30
|
+
|
31
|
+
def type
|
32
|
+
env_config('TYPE') || @type
|
33
|
+
end
|
34
|
+
|
35
|
+
def project
|
36
|
+
env_config('PROJECT') || @project
|
37
|
+
end
|
38
|
+
|
39
|
+
def path_to_key
|
40
|
+
env_config('PATH_TO_KEY') || @path_to_key
|
41
|
+
end
|
42
|
+
|
43
|
+
private
|
44
|
+
|
45
|
+
def env_config name
|
46
|
+
return ENV["HOZE_CONFIG_CONNECTOR_#{name}"]
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
module Hoze
|
2
|
+
|
3
|
+
class Message
|
4
|
+
|
5
|
+
attr_reader :payload, :timestamp, :metadata, :source, :source_message
|
6
|
+
|
7
|
+
# Ask for more time before acknowledging
|
8
|
+
def delay! seconds
|
9
|
+
raise NotImplementedError.new("This message implementation doesn't support delay! method.")
|
10
|
+
end
|
11
|
+
|
12
|
+
# Acknowledge the message
|
13
|
+
def ack!
|
14
|
+
raise NotImplementedError.new("This message implementation doesn't support ack! method.")
|
15
|
+
end
|
16
|
+
|
17
|
+
# Release the message
|
18
|
+
def reject!
|
19
|
+
raise NotImplementedError.new("This message implementation doesn't support reject! method.")
|
20
|
+
end
|
21
|
+
|
22
|
+
# Retry the message
|
23
|
+
def retry!
|
24
|
+
raise NotImplementedError.new("This message implementation doesn't support retry! method.")
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
require "hoze/interface/message"
|
2
|
+
|
3
|
+
module Hoze
|
4
|
+
|
5
|
+
class PubSubMessage < Message
|
6
|
+
|
7
|
+
def initialize source_message, source
|
8
|
+
@payload = source_message.data
|
9
|
+
@timestamp = source_message.published_at
|
10
|
+
@metadata = source_message.attributes
|
11
|
+
@metadata['tries'] = (@metadata['tries'].to_i || 0) + 1
|
12
|
+
@source_message = source_message
|
13
|
+
@source = source
|
14
|
+
@acked = false
|
15
|
+
end
|
16
|
+
|
17
|
+
# Ask for more time before acknowledging
|
18
|
+
def delay! seconds
|
19
|
+
@source_message.delay! seconds
|
20
|
+
end
|
21
|
+
|
22
|
+
# Acknowledge the message
|
23
|
+
def ack!
|
24
|
+
@source_message.ack! unless @acked
|
25
|
+
@acked = true
|
26
|
+
end
|
27
|
+
|
28
|
+
# Release the message
|
29
|
+
def reject!
|
30
|
+
@source_message.reject!
|
31
|
+
end
|
32
|
+
|
33
|
+
# Retry the message
|
34
|
+
def retry!
|
35
|
+
ack!
|
36
|
+
retry_config = @source.max_tries || 1
|
37
|
+
if @metadata['tries'] < retry_config
|
38
|
+
puts "RETRYING: #{@metadata['tries']} / #{retry_config}"
|
39
|
+
@source.topic.publish_async(@payload, @metadata)
|
40
|
+
else
|
41
|
+
puts "Dead message #{@source_message.inspect}"
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,62 @@
|
|
1
|
+
require "hoze/interface/source"
|
2
|
+
require "hoze/pubsub/message"
|
3
|
+
|
4
|
+
module Hoze
|
5
|
+
|
6
|
+
class PubSubSource < Source
|
7
|
+
|
8
|
+
attr_reader :topic, :subscription, :max_tries
|
9
|
+
|
10
|
+
def initialize configuration
|
11
|
+
@engine = Google::Cloud::Pubsub.new(
|
12
|
+
project: configuration.connector.project,
|
13
|
+
credentials: configuration.connector.path_to_key
|
14
|
+
)
|
15
|
+
|
16
|
+
@channel = configuration.channel
|
17
|
+
@key = configuration.key
|
18
|
+
|
19
|
+
@topic = ensure_topic
|
20
|
+
@subscription = ensure_subscription
|
21
|
+
|
22
|
+
@max_tries = configuration.max_tries
|
23
|
+
end
|
24
|
+
|
25
|
+
|
26
|
+
def listen &block
|
27
|
+
#puts @subscription.inspect
|
28
|
+
subscriber = @subscription.listen do |received_message|
|
29
|
+
begin
|
30
|
+
msg = Hoze::PubSubMessage.new(received_message, self)
|
31
|
+
yield msg
|
32
|
+
rescue Exception => e
|
33
|
+
puts "Exception: #{e.message}"
|
34
|
+
raise # always reraise
|
35
|
+
end
|
36
|
+
end
|
37
|
+
subscriber.start
|
38
|
+
begin
|
39
|
+
puts "Starts listening"
|
40
|
+
while true do
|
41
|
+
sleep 10
|
42
|
+
end
|
43
|
+
rescue Interrupt
|
44
|
+
puts "Interrupted, cleaning ok"
|
45
|
+
ensure
|
46
|
+
subscriber.stop.wait!
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
private
|
51
|
+
|
52
|
+
def ensure_topic
|
53
|
+
@engine.topic(@channel)||@engine.create_topic(@channel)
|
54
|
+
end
|
55
|
+
|
56
|
+
def ensure_subscription
|
57
|
+
@topic.subscription(@key)||@topic.subscribe(@key)
|
58
|
+
end
|
59
|
+
|
60
|
+
end
|
61
|
+
|
62
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require "google/cloud/pubsub"
|
2
|
+
require "hoze/pubsub/source"
|
3
|
+
|
4
|
+
module Hoze
|
5
|
+
|
6
|
+
class SourceFactory
|
7
|
+
|
8
|
+
def initialize
|
9
|
+
end
|
10
|
+
|
11
|
+
def build configuration
|
12
|
+
case configuration.connector.type
|
13
|
+
when 'pubsub'
|
14
|
+
Hoze::PubSubSource.new configuration
|
15
|
+
else
|
16
|
+
raise Exception.new("Connector #{configuration.connector[:type]} not implemented")
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
data/lib/hoze/version.rb
ADDED
data/lib/hoze/worker.rb
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
require 'hoze/source_factory'
|
2
|
+
|
3
|
+
module Hoze
|
4
|
+
|
5
|
+
def self.worker
|
6
|
+
Hoze::Worker.new
|
7
|
+
end
|
8
|
+
|
9
|
+
class Worker
|
10
|
+
|
11
|
+
attr_accessor :source_factory
|
12
|
+
|
13
|
+
def initialize
|
14
|
+
@configuration = Hoze::Configuration.new
|
15
|
+
@source_factory = Hoze::SourceFactory.new
|
16
|
+
end
|
17
|
+
|
18
|
+
def configure &block
|
19
|
+
yield @configuration
|
20
|
+
puts "Configuration is: #{@configuration.inspect}"
|
21
|
+
self
|
22
|
+
end
|
23
|
+
|
24
|
+
def process &block
|
25
|
+
source = @source_factory.build(@configuration)
|
26
|
+
|
27
|
+
source.listen do |msg|
|
28
|
+
begin
|
29
|
+
msg.ack! if @configuration.auto_ack
|
30
|
+
result = yield msg
|
31
|
+
rescue Exception => e
|
32
|
+
msg.retry!
|
33
|
+
raise e
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
end
|
data/lib/hoze.rb
ADDED
metadata
ADDED
@@ -0,0 +1,123 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: hoze
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- pluce
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-03-05 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.15'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.15'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: google-cloud-pubsub
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.29.0
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.29.0
|
69
|
+
description: Asynchronous job runtime backed by Google Pub Sub
|
70
|
+
email:
|
71
|
+
- pluce@ventadis.fr
|
72
|
+
executables:
|
73
|
+
- hoze
|
74
|
+
extensions: []
|
75
|
+
extra_rdoc_files: []
|
76
|
+
files:
|
77
|
+
- ".gitignore"
|
78
|
+
- ".rspec"
|
79
|
+
- ".travis.yml"
|
80
|
+
- Gemfile
|
81
|
+
- LICENSE.txt
|
82
|
+
- README.md
|
83
|
+
- Rakefile
|
84
|
+
- bin/console
|
85
|
+
- bin/setup
|
86
|
+
- exe/hoze
|
87
|
+
- hoze.gemspec
|
88
|
+
- lib/hoze.rb
|
89
|
+
- lib/hoze/cli.rb
|
90
|
+
- lib/hoze/configuration.rb
|
91
|
+
- lib/hoze/interface/message.rb
|
92
|
+
- lib/hoze/interface/source.rb
|
93
|
+
- lib/hoze/pubsub/message.rb
|
94
|
+
- lib/hoze/pubsub/source.rb
|
95
|
+
- lib/hoze/source_factory.rb
|
96
|
+
- lib/hoze/version.rb
|
97
|
+
- lib/hoze/worker.rb
|
98
|
+
homepage: https://github.com/pluce/hoze
|
99
|
+
licenses:
|
100
|
+
- MIT
|
101
|
+
metadata:
|
102
|
+
allowed_push_host: https://rubygems.org
|
103
|
+
post_install_message:
|
104
|
+
rdoc_options: []
|
105
|
+
require_paths:
|
106
|
+
- lib
|
107
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - ">="
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '0'
|
112
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0'
|
117
|
+
requirements: []
|
118
|
+
rubyforge_project:
|
119
|
+
rubygems_version: 2.6.11
|
120
|
+
signing_key:
|
121
|
+
specification_version: 4
|
122
|
+
summary: Asynchronous job runtime backed by Google Pub Sub
|
123
|
+
test_files: []
|