quiq 0.2.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.
Files changed (66) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/ruby.yml +20 -0
  3. data/.gitignore +15 -0
  4. data/.rspec +3 -0
  5. data/.rubocop.yml +2 -0
  6. data/.travis.yml +6 -0
  7. data/Gemfile +11 -0
  8. data/Gemfile.lock +174 -0
  9. data/LICENSE.txt +21 -0
  10. data/README.md +163 -0
  11. data/Rakefile +6 -0
  12. data/bin/console +14 -0
  13. data/bin/quiq +42 -0
  14. data/bin/quiqload +46 -0
  15. data/bin/setup +8 -0
  16. data/lib/quiq.rb +49 -0
  17. data/lib/quiq/client.rb +22 -0
  18. data/lib/quiq/config.rb +35 -0
  19. data/lib/quiq/job.rb +51 -0
  20. data/lib/quiq/queue.rb +65 -0
  21. data/lib/quiq/redis.rb +17 -0
  22. data/lib/quiq/scheduler.rb +51 -0
  23. data/lib/quiq/server.rb +28 -0
  24. data/lib/quiq/version.rb +5 -0
  25. data/lib/quiq/worker.rb +28 -0
  26. data/quiq.gemspec +30 -0
  27. data/testapp/Gemfile +15 -0
  28. data/testapp/Gemfile.lock +190 -0
  29. data/testapp/README.md +24 -0
  30. data/testapp/Rakefile +6 -0
  31. data/testapp/app/controllers/application_controller.rb +2 -0
  32. data/testapp/app/controllers/concerns/.keep +0 -0
  33. data/testapp/app/jobs/application_job.rb +7 -0
  34. data/testapp/app/jobs/http_job.rb +14 -0
  35. data/testapp/app/jobs/test_job.rb +9 -0
  36. data/testapp/app/models/concerns/.keep +0 -0
  37. data/testapp/bin/bundle +114 -0
  38. data/testapp/bin/rails +4 -0
  39. data/testapp/bin/rake +4 -0
  40. data/testapp/bin/setup +25 -0
  41. data/testapp/config.ru +5 -0
  42. data/testapp/config/application.rb +40 -0
  43. data/testapp/config/boot.rb +4 -0
  44. data/testapp/config/credentials.yml.enc +1 -0
  45. data/testapp/config/environment.rb +5 -0
  46. data/testapp/config/environments/development.rb +38 -0
  47. data/testapp/config/environments/production.rb +88 -0
  48. data/testapp/config/environments/test.rb +38 -0
  49. data/testapp/config/initializers/application_controller_renderer.rb +8 -0
  50. data/testapp/config/initializers/backtrace_silencers.rb +7 -0
  51. data/testapp/config/initializers/cors.rb +16 -0
  52. data/testapp/config/initializers/filter_parameter_logging.rb +4 -0
  53. data/testapp/config/initializers/inflections.rb +16 -0
  54. data/testapp/config/initializers/mime_types.rb +4 -0
  55. data/testapp/config/initializers/quiq.rb +29 -0
  56. data/testapp/config/initializers/wrap_parameters.rb +9 -0
  57. data/testapp/config/locales/en.yml +33 -0
  58. data/testapp/config/master.key +1 -0
  59. data/testapp/config/routes.rb +3 -0
  60. data/testapp/lib/tasks/.keep +0 -0
  61. data/testapp/public/robots.txt +1 -0
  62. data/testapp/tmp/.keep +0 -0
  63. data/testapp/tmp/development_secret.txt +1 -0
  64. data/testapp/tmp/pids/.keep +0 -0
  65. data/testapp/vendor/.keep +0 -0
  66. metadata +140 -0
@@ -0,0 +1,5 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require_relative 'config/environment'
4
+
5
+ run Rails.application
@@ -0,0 +1,40 @@
1
+ require_relative 'boot'
2
+
3
+ require "rails"
4
+ # Pick the frameworks you want:
5
+ require "active_model/railtie"
6
+ require "active_job/railtie"
7
+ # require "active_record/railtie"
8
+ # require "active_storage/engine"
9
+ require "action_controller/railtie"
10
+ # require "action_mailer/railtie"
11
+ # require "action_mailbox/engine"
12
+ # require "action_text/engine"
13
+ require "action_view/railtie"
14
+ # require "action_cable/engine"
15
+ # require "sprockets/railtie"
16
+ # require "rails/test_unit/railtie"
17
+
18
+ # Require the gems listed in Gemfile, including any gems
19
+ # you've limited to :test, :development, or :production.
20
+ Bundler.require(*Rails.groups)
21
+
22
+ module Testapp
23
+ class Application < Rails::Application
24
+ # Initialize configuration defaults for originally generated Rails version.
25
+ config.load_defaults 6.0
26
+
27
+ # Settings in config/environments/* take precedence over those specified here.
28
+ # Application configuration can go into files in config/initializers
29
+ # -- all .rb files in that directory are automatically loaded after loading
30
+ # the framework and any gems in your application.
31
+
32
+ # Only loads a smaller set of middleware suitable for API only apps.
33
+ # Middleware like session, flash, cookies can be added back manually.
34
+ # Skip views, helpers and assets when generating a new resource.
35
+ config.api_only = true
36
+
37
+ # Use quiq as a queue adapter
38
+ config.active_job.queue_adapter = :quiq
39
+ end
40
+ end
@@ -0,0 +1,4 @@
1
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
2
+
3
+ require 'bundler/setup' # Set up gems listed in the Gemfile.
4
+ require 'bootsnap/setup' # Speed up boot time by caching expensive operations.
@@ -0,0 +1 @@
1
+ G2+Rv3iZtzrkp46vqdQLVtwZkZbtACaPV88iZgYZaNOfiYzxLcOv6RMmwq8X5h85pNmHLT4rBtZZRMlBNdkl9JfXxe+EE1XlPxFUhHvHf5SeEFPiJ6zPG9HVJwgbPUAAriRgvT5gXvzmTeXrEIdk66eCQ/3wcDg75oMXT61sTdmlrg+pQMktbgmZKnjtHGhBhHTJk/cYD/i9e8qVmrBaxiBLNaLgnHDPOCs8eODD+Grih7iLaHwZnnnLzdfqwKuWQm2Ui9fz1+46mnAN+E7OQS7nYABhxL5AuRXhgBU0tdm3OFKrescOMJKha3S7zvhbhTbAjLMUifHRonjpWiAm0Jh5w6Cytl3b7hqdrF7gAGvW6xYA6feR2nbd95M/AthD2mBQJNMJiSn6576sm64VLXNW01qhV/wqcorW--oP8J+uxRu8YsAvXJ--0REtac/z+qCCRnC3QNvD7g==
@@ -0,0 +1,5 @@
1
+ # Load the Rails application.
2
+ require_relative 'application'
3
+
4
+ # Initialize the Rails application.
5
+ Rails.application.initialize!
@@ -0,0 +1,38 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Do not eager load code on boot.
10
+ config.eager_load = false
11
+
12
+ # Show full error reports.
13
+ config.consider_all_requests_local = true
14
+
15
+ # Enable/disable caching. By default caching is disabled.
16
+ # Run rails dev:cache to toggle caching.
17
+ if Rails.root.join('tmp', 'caching-dev.txt').exist?
18
+ config.cache_store = :memory_store
19
+ config.public_file_server.headers = {
20
+ 'Cache-Control' => "public, max-age=#{2.days.to_i}"
21
+ }
22
+ else
23
+ config.action_controller.perform_caching = false
24
+
25
+ config.cache_store = :null_store
26
+ end
27
+
28
+ # Print deprecation notices to the Rails logger.
29
+ config.active_support.deprecation = :log
30
+
31
+
32
+ # Raises error for missing translations.
33
+ # config.action_view.raise_on_missing_translations = true
34
+
35
+ # Use an evented file watcher to asynchronously detect changes in source code,
36
+ # routes, locales, etc. This feature depends on the listen gem.
37
+ config.file_watcher = ActiveSupport::EventedFileUpdateChecker
38
+ end
@@ -0,0 +1,88 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # Code is not reloaded between requests.
5
+ config.cache_classes = true
6
+
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both threaded web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+
16
+ # Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"]
17
+ # or in config/master.key. This key is used to decrypt credentials (and other encrypted files).
18
+ # config.require_master_key = true
19
+
20
+ # Disable serving static files from the `/public` folder by default since
21
+ # Apache or NGINX already handles this.
22
+ config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
23
+
24
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
25
+ # config.action_controller.asset_host = 'http://assets.example.com'
26
+
27
+ # Specifies the header that your server uses for sending files.
28
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
29
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
30
+
31
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
32
+ # config.force_ssl = true
33
+
34
+ # Use the lowest log level to ensure availability of diagnostic information
35
+ # when problems arise.
36
+ config.log_level = :debug
37
+
38
+ # Prepend all log lines with the following tags.
39
+ config.log_tags = [ :request_id ]
40
+
41
+ # Use a different cache store in production.
42
+ # config.cache_store = :mem_cache_store
43
+
44
+ # Use a real queuing backend for Active Job (and separate queues per environment).
45
+ # config.active_job.queue_adapter = :resque
46
+ # config.active_job.queue_name_prefix = "testapp_production"
47
+
48
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
49
+ # the I18n.default_locale when a translation cannot be found).
50
+ config.i18n.fallbacks = true
51
+
52
+ # Send deprecation notices to registered listeners.
53
+ config.active_support.deprecation = :notify
54
+
55
+ # Use default logging formatter so that PID and timestamp are not suppressed.
56
+ config.log_formatter = ::Logger::Formatter.new
57
+
58
+ # Use a different logger for distributed setups.
59
+ # require 'syslog/logger'
60
+ # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
61
+
62
+ if ENV["RAILS_LOG_TO_STDOUT"].present?
63
+ logger = ActiveSupport::Logger.new(STDOUT)
64
+ logger.formatter = config.log_formatter
65
+ config.logger = ActiveSupport::TaggedLogging.new(logger)
66
+ end
67
+
68
+ # Inserts middleware to perform automatic connection switching.
69
+ # The `database_selector` hash is used to pass options to the DatabaseSelector
70
+ # middleware. The `delay` is used to determine how long to wait after a write
71
+ # to send a subsequent read to the primary.
72
+ #
73
+ # The `database_resolver` class is used by the middleware to determine which
74
+ # database is appropriate to use based on the time delay.
75
+ #
76
+ # The `database_resolver_context` class is used by the middleware to set
77
+ # timestamps for the last write to the primary. The resolver uses the context
78
+ # class timestamps to determine how long to wait before reading from the
79
+ # replica.
80
+ #
81
+ # By default Rails will store a last write timestamp in the session. The
82
+ # DatabaseSelector middleware is designed as such you can define your own
83
+ # strategy for connection switching and pass that into the middleware through
84
+ # these configuration options.
85
+ # config.active_record.database_selector = { delay: 2.seconds }
86
+ # config.active_record.database_resolver = ActiveRecord::Middleware::DatabaseSelector::Resolver
87
+ # config.active_record.database_resolver_context = ActiveRecord::Middleware::DatabaseSelector::Resolver::Session
88
+ end
@@ -0,0 +1,38 @@
1
+ # The test environment is used exclusively to run your application's
2
+ # test suite. You never need to work with it otherwise. Remember that
3
+ # your test database is "scratch space" for the test suite and is wiped
4
+ # and recreated between test runs. Don't rely on the data there!
5
+
6
+ Rails.application.configure do
7
+ # Settings specified here will take precedence over those in config/application.rb.
8
+
9
+ config.cache_classes = true
10
+
11
+ # Do not eager load code on boot. This avoids loading your whole application
12
+ # just for the purpose of running a single test. If you are using a tool that
13
+ # preloads Rails for running tests, you may have to set it to true.
14
+ config.eager_load = false
15
+
16
+ # Configure public file server for tests with Cache-Control for performance.
17
+ config.public_file_server.enabled = true
18
+ config.public_file_server.headers = {
19
+ 'Cache-Control' => "public, max-age=#{1.hour.to_i}"
20
+ }
21
+
22
+ # Show full error reports and disable caching.
23
+ config.consider_all_requests_local = true
24
+ config.action_controller.perform_caching = false
25
+ config.cache_store = :null_store
26
+
27
+ # Raise exceptions instead of rendering exception templates.
28
+ config.action_dispatch.show_exceptions = false
29
+
30
+ # Disable request forgery protection in test environment.
31
+ config.action_controller.allow_forgery_protection = false
32
+
33
+ # Print deprecation notices to the stderr.
34
+ config.active_support.deprecation = :stderr
35
+
36
+ # Raises error for missing translations.
37
+ # config.action_view.raise_on_missing_translations = true
38
+ end
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # ActiveSupport::Reloader.to_prepare do
4
+ # ApplicationController.renderer.defaults.merge!(
5
+ # http_host: 'example.org',
6
+ # https: false
7
+ # )
8
+ # end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Avoid CORS issues when API is called from the frontend app.
4
+ # Handle Cross-Origin Resource Sharing (CORS) in order to accept cross-origin AJAX requests.
5
+
6
+ # Read more: https://github.com/cyu/rack-cors
7
+
8
+ # Rails.application.config.middleware.insert_before 0, Rack::Cors do
9
+ # allow do
10
+ # origins 'example.com'
11
+ #
12
+ # resource '*',
13
+ # headers: :any,
14
+ # methods: [:get, :post, :put, :patch, :delete, :options, :head]
15
+ # end
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Monkey patch activejob until there is an official integration
4
+ module ActiveJob
5
+ module QueueAdapters
6
+ class QuiqAdapter
7
+ def enqueue(job)
8
+ Quiq::Client.push(job)
9
+ end
10
+
11
+ def enqueue_at(job, timestamp)
12
+ Quiq::Client.push(job, scheduled_at: timestamp)
13
+ end
14
+
15
+ class JobWrapper
16
+ class << self
17
+ def perform(job_data)
18
+ Base.execute job_data
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
25
+
26
+ Quiq.configure do |config|
27
+ config.redis = 'redis://localhost:6379'
28
+ # config.logger = Rails.logger
29
+ end
@@ -0,0 +1,9 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
@@ -0,0 +1,33 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # The following keys must be escaped otherwise they will not be retrieved by
20
+ # the default I18n backend:
21
+ #
22
+ # true, false, on, off, yes, no
23
+ #
24
+ # Instead, surround them with single quotes.
25
+ #
26
+ # en:
27
+ # 'true': 'foo'
28
+ #
29
+ # To learn more, please read the Rails Internationalization guide
30
+ # available at https://guides.rubyonrails.org/i18n.html.
31
+
32
+ en:
33
+ hello: "Hello world"
@@ -0,0 +1 @@
1
+ b714699f8d6ba180bb81cb88bcdc6fff
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ # For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
3
+ end
File without changes
@@ -0,0 +1 @@
1
+ # See https://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
File without changes
@@ -0,0 +1 @@
1
+ 5430ecc9599365e71b5573458591581a7c8f39451d59476145c9cada04da78a0e588f065533419ee88281ed56af961c25d7275ea80312c40c4415886c34873ff
File without changes
File without changes
metadata ADDED
@@ -0,0 +1,140 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: quiq
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Salim Semaoune
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-02-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: async-redis
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.4.3
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.4.3
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '3.2'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '3.2'
41
+ description: |2
42
+ Quiq is a distributed task queue backed by Redis to process jobs in background.
43
+ It relies on asynchronous IOs to process multiple jobs simultaneously. The event loop is provided by the Async library and many other gems of the Socketry family.
44
+ email:
45
+ executables:
46
+ - quiq
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - ".github/workflows/ruby.yml"
51
+ - ".gitignore"
52
+ - ".rspec"
53
+ - ".rubocop.yml"
54
+ - ".travis.yml"
55
+ - Gemfile
56
+ - Gemfile.lock
57
+ - LICENSE.txt
58
+ - README.md
59
+ - Rakefile
60
+ - bin/console
61
+ - bin/quiq
62
+ - bin/quiqload
63
+ - bin/setup
64
+ - lib/quiq.rb
65
+ - lib/quiq/client.rb
66
+ - lib/quiq/config.rb
67
+ - lib/quiq/job.rb
68
+ - lib/quiq/queue.rb
69
+ - lib/quiq/redis.rb
70
+ - lib/quiq/scheduler.rb
71
+ - lib/quiq/server.rb
72
+ - lib/quiq/version.rb
73
+ - lib/quiq/worker.rb
74
+ - quiq.gemspec
75
+ - testapp/.ruby-version
76
+ - testapp/Gemfile
77
+ - testapp/Gemfile.lock
78
+ - testapp/README.md
79
+ - testapp/Rakefile
80
+ - testapp/app/controllers/application_controller.rb
81
+ - testapp/app/controllers/concerns/.keep
82
+ - testapp/app/jobs/application_job.rb
83
+ - testapp/app/jobs/http_job.rb
84
+ - testapp/app/jobs/test_job.rb
85
+ - testapp/app/models/concerns/.keep
86
+ - testapp/bin/bundle
87
+ - testapp/bin/rails
88
+ - testapp/bin/rake
89
+ - testapp/bin/setup
90
+ - testapp/config.ru
91
+ - testapp/config/application.rb
92
+ - testapp/config/boot.rb
93
+ - testapp/config/credentials.yml.enc
94
+ - testapp/config/environment.rb
95
+ - testapp/config/environments/development.rb
96
+ - testapp/config/environments/production.rb
97
+ - testapp/config/environments/test.rb
98
+ - testapp/config/initializers/application_controller_renderer.rb
99
+ - testapp/config/initializers/backtrace_silencers.rb
100
+ - testapp/config/initializers/cors.rb
101
+ - testapp/config/initializers/filter_parameter_logging.rb
102
+ - testapp/config/initializers/inflections.rb
103
+ - testapp/config/initializers/mime_types.rb
104
+ - testapp/config/initializers/quiq.rb
105
+ - testapp/config/initializers/wrap_parameters.rb
106
+ - testapp/config/locales/en.yml
107
+ - testapp/config/master.key
108
+ - testapp/config/routes.rb
109
+ - testapp/lib/tasks/.keep
110
+ - testapp/log/.keep
111
+ - testapp/public/robots.txt
112
+ - testapp/tmp/.keep
113
+ - testapp/tmp/development_secret.txt
114
+ - testapp/tmp/pids/.keep
115
+ - testapp/vendor/.keep
116
+ homepage: https://github.com/sailor/quiq
117
+ licenses:
118
+ - MIT
119
+ metadata: {}
120
+ post_install_message:
121
+ rdoc_options: []
122
+ require_paths:
123
+ - lib
124
+ required_ruby_version: !ruby/object:Gem::Requirement
125
+ requirements:
126
+ - - ">="
127
+ - !ruby/object:Gem::Version
128
+ version: 2.3.0
129
+ required_rubygems_version: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - ">="
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ requirements: []
135
+ rubygems_version: 3.1.2
136
+ signing_key:
137
+ specification_version: 4
138
+ summary: Distributed task queue written in Ruby, backed by Redis and using event loops
139
+ to handle concurrency.
140
+ test_files: []