symphony 0.14.1 → 0.14.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c8f391328cf5c098e87f56b3f036f676ab7b884a35f033c54c75fa83456afb8a
4
- data.tar.gz: 1fbc3e3ab5a9e0aae6bdd0f0f3a9210689d3b0caba82e3668a5f9676e99b2b73
3
+ metadata.gz: 6a8df466e484afe184b2a89e8de54893ef34ac91ee6977d072d50a0b51d4be44
4
+ data.tar.gz: 1d323ecfab0a438982a37abbf5d9b1ca08c49cb890d2c460fc0b690c0dcf22b8
5
5
  SHA512:
6
- metadata.gz: d5d4049d202b62371da4402404d3b53254de607e356e298d43f72c62de8305e4f0b0d54fb954f5dd5bd857665d1e5ff27f190ea89030e6faf5210efe05f9e54a
7
- data.tar.gz: 4c6aa83b99edd4ccb32f087b8d39b0f6c177ddeacd158277726b49307e7fc07e2ca2f8bcca3d98db8c2ec8f25e60fb70277d5becf86470b313280a2308603d12
6
+ metadata.gz: dd4e6aeb42231b245f42a0367a8b44d21cf7d1e1eef0459e9d8f6e3d17c97b3ee618cb26fb210210dd8222823dfbb3e8860ce0c45f57e2e753fe44cc0c70fe03
7
+ data.tar.gz: 1c69312922220fb83f315101269b58b69ad422e5087179d8add0cd585cee2d17084d0d3a238a2efad2bf1da35c646a32b5d6d6d0efc1a85ecac7335d8a6fa254
checksums.yaml.gz.sig CHANGED
Binary file
data/History.rdoc CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ---
4
4
 
5
+ == v0.14.2 [2023-03-11] Mahlon E. Smith <mahlon@martini.nu>
6
+
7
+ - Allow Ruby 3.x, make 2.6 minimum.
8
+
9
+
5
10
  == v0.14.1 [2023-03-09] Mahlon E. Smith <mahlon@martini.nu>
6
11
 
7
12
  Housekeeping:
data/Rakefile CHANGED
@@ -4,7 +4,7 @@ require 'rake/deveiate'
4
4
 
5
5
  Rake::DevEiate.setup( 'symphony' ) do |project|
6
6
  project.publish_to = 'deveiate:/usr/local/www/public/code'
7
- project.required_ruby_version = '~> 2.6'
7
+ project.required_ruby_version = '>= 2.6'
8
8
  end
9
9
 
10
10
 
data/USAGE.rdoc CHANGED
@@ -261,7 +261,7 @@ can tell a task to create a persistent queue instead of an auto-delete queue:
261
261
 
262
262
  == Queue Re-binding
263
263
 
264
- If you want Symphony to re-bind a worker's queue when it starts up, you call
264
+ If you want Symphony to re-bind a worker's queue when it starts up, you can
265
265
  tell it to with +always_rebind+:
266
266
 
267
267
  always_rebind true
@@ -405,7 +405,7 @@ receive them, AMQP drops the message immediately. (If the publisher
405
405
  sets the 'mandatory' flag, they'll receive an error and can act
406
406
  accordingly.)
407
407
 
408
- Instead of setting 'mandatory', you may want to have AMQP accept the
408
+ In addition to setting 'mandatory', you may want to have AMQP accept the
409
409
  message, and save it for task worker to consume at a later time. To do
410
410
  this, you just need to manually create the queue, and the bindings to
411
411
  it from the exchange (you'll probably want these marked as 'durable' as
data/lib/symphony.rb CHANGED
@@ -12,7 +12,7 @@ module Symphony
12
12
  Configurability
13
13
 
14
14
  # Library version constant
15
- VERSION = '0.14.1'
15
+ VERSION = '0.14.2'
16
16
 
17
17
  # The name of the environment variable to check for config file overrides
18
18
  CONFIG_ENV = 'SYMPHONY_CONFIG'
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: symphony
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.1
4
+ version: 0.14.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Granger
@@ -35,7 +35,7 @@ cert_chain:
35
35
  49pOzX5KHZLTS9DKeaP/xcGPz6C8MiwQdYrZarr2SHRASX1zFa79rkItO8kE6RDr
36
36
  b6WDF79UvZ55ajtE00TiwqjQL/ZPEtbd
37
37
  -----END CERTIFICATE-----
38
- date: 2023-03-09 00:00:00.000000000 Z
38
+ date: 2023-03-11 00:00:00.000000000 Z
39
39
  dependencies:
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: configurability
@@ -269,7 +269,7 @@ require_paths:
269
269
  - lib
270
270
  required_ruby_version: !ruby/object:Gem::Requirement
271
271
  requirements:
272
- - - "~>"
272
+ - - ">="
273
273
  - !ruby/object:Gem::Version
274
274
  version: '2.6'
275
275
  required_rubygems_version: !ruby/object:Gem::Requirement
@@ -278,7 +278,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
278
278
  - !ruby/object:Gem::Version
279
279
  version: '0'
280
280
  requirements: []
281
- rubygems_version: 3.4.6
281
+ rubygems_version: 3.3.26
282
282
  signing_key:
283
283
  specification_version: 4
284
284
  summary: Symphony is a subscription-based asynchronous job system.
metadata.gz.sig CHANGED
Binary file