aws-activejob-sqs 1.0.1 → 1.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 82c2370fcb69f9135107d5c01bacabba872af1e234f8202397137f2197207ed8
4
- data.tar.gz: 04de9ca10586e5f33a457736721ee60650cf3457c386839af832fc40281be692
3
+ metadata.gz: 43f56ad87999ca924172fa56bb7fb6af16e77a0e63ed63cf77398e8ab097da7e
4
+ data.tar.gz: 10b9fbb6d8583041306da87e6186e7ec67607f975b33242695080441db7a4ce3
5
5
  SHA512:
6
- metadata.gz: e95f977177dee9d4037a775c7381c8967ef31de003eaf6fb88a5fc2f3bc0fc269fe73a4352a8f83b96570c1ef9d0439de6a55580c2c467405e40fa6f71547716
7
- data.tar.gz: d1fc77c9673fee409fbb0c5cc0a946adc9200fe2581e72e07d9bf279302326bc2470582e46ef4b2e310b18d41148e02452fc869781f7391ca75c5548f0d17d10
6
+ metadata.gz: ed23b76c320bc0cf8860b9df133fd114fb62f5439dbca3eaacf927ffd6c30b7cf4eb2df05e74bacc1a79d56ffce1f77a6052a22c3ffd51fd1d7405c1bb29b45c
7
+ data.tar.gz: 0ceaf002ad0b8ef3246df38b8570b2bbab13de7b53346dc8fefb49b964bd2d6db96fcc2a0f86c0c852048daee0202e2b8947f55267eab0f1a4c0a547d697c942
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ 1.0.2 (2025-04-01)
2
+ ------------------
3
+
4
+ * Issue - Remove `aws_sqs_active_job` executable.
5
+ * Issue - Handle `Time` objects correctly when using `ActiveJob.perform_all_later`.
6
+
1
7
  1.0.1 (2024-12-23)
2
8
  ------------------
3
9
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.1
1
+ 1.0.2
@@ -8,7 +8,7 @@ module ActiveJob
8
8
  class Params
9
9
  class << self
10
10
  def assured_delay_seconds(timestamp)
11
- delay = (timestamp - Time.now.to_f).floor
11
+ delay = (timestamp.to_f - Time.now.to_f).floor
12
12
  delay = 0 if delay.negative?
13
13
  raise ArgumentError, 'Unable to queue a job with a delay great than 15 minutes' if delay > 15.minutes
14
14
 
@@ -47,7 +47,7 @@ module Aws
47
47
  def self.boot_rails_option(opts, out)
48
48
  doc = 'When set boots rails before running the poller.'
49
49
  opts.on('--[no-]rails [FLAG]', TrueClass, doc) do |a|
50
- out[:boot_rails] = a.nil? ? true : a
50
+ out[:boot_rails] = a.nil? || a
51
51
  end
52
52
  end
53
53
 
@@ -100,7 +100,6 @@ module Aws
100
100
  end
101
101
 
102
102
  def validate_config(queue)
103
- puts Aws::ActiveJob::SQS.config.queues
104
103
  return if Aws::ActiveJob::SQS.config.queues[queue]&.fetch(:url, nil)
105
104
 
106
105
  raise ArgumentError, "No URL configured for queue #{queue}"
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-activejob-sqs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-23 00:00:00.000000000 Z
10
+ date: 2025-04-01 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: aws-sdk-sqs
@@ -63,7 +62,6 @@ email:
63
62
  - aws-dr-rubygems@amazon.com
64
63
  executables:
65
64
  - aws_active_job_sqs
66
- - aws_sqs_active_job
67
65
  extensions: []
68
66
  extra_rdoc_files: []
69
67
  files:
@@ -71,7 +69,6 @@ files:
71
69
  - LICENSE
72
70
  - VERSION
73
71
  - bin/aws_active_job_sqs
74
- - bin/aws_sqs_active_job
75
72
  - lib/active_job/queue_adapters/sqs_adapter.rb
76
73
  - lib/active_job/queue_adapters/sqs_adapter/params.rb
77
74
  - lib/active_job/queue_adapters/sqs_async_adapter.rb
@@ -87,7 +84,6 @@ homepage: https://github.com/aws/aws-activejob-sqs-ruby
87
84
  licenses:
88
85
  - Apache-2.0
89
86
  metadata: {}
90
- post_install_message:
91
87
  rdoc_options: []
92
88
  require_paths:
93
89
  - lib
@@ -102,8 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
102
98
  - !ruby/object:Gem::Version
103
99
  version: '0'
104
100
  requirements: []
105
- rubygems_version: 3.5.9
106
- signing_key:
101
+ rubygems_version: 3.6.5
107
102
  specification_version: 4
108
103
  summary: ActiveJob integration with SQS
109
104
  test_files: []
@@ -1,18 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- require_relative '../lib/aws-activejob-sqs'
5
- require_relative '../lib/aws/active_job/sqs/cli_options'
6
- require_relative '../lib/aws/active_job/sqs/poller'
7
-
8
- opts = Aws::ActiveJob::SQS::CliOptions.parse(ARGV)
9
-
10
- if opts[:boot_rails]
11
- require 'rails'
12
- require File.expand_path('config/environment.rb')
13
- end
14
-
15
- require File.join(Dir.pwd, opts[:require]) if opts[:require]
16
-
17
- puts 'WARNING: Using deprecated poller executable. Please migrate to `aws_active_job_sqs`'
18
- Aws::ActiveJob::SQS::Poller.new(opts.to_h.compact).run