ae_active_job_state 1.6.0 → 1.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 17a89e003fc1c732dd968fe401671c7cb93229717ff416714c73f0f5c5b80899
4
- data.tar.gz: 375920dfbeb596419feb12441e2fd0194e030e272808239f7941d657277bd087
3
+ metadata.gz: c29b4be897ca9f4276f8ba40e3230519aa10a3a3eef7391aa1a519127a0c8fee
4
+ data.tar.gz: db1ef858d0e8e63689189b33067cd029a5bb6f374f4cb04f2a00e7f7f5075fac
5
5
  SHA512:
6
- metadata.gz: 52ae99f15d3d28a627ca363a23b116486b7f37a1f50a036b5e7721a0fd522cdb0088aa90930c3ccdb77911ef75bcb1319c1c23e5b3d9be610b254d0ef243a551
7
- data.tar.gz: 7c07357e7c5bea5ec4acf9adaec676192c0c90b645f365020e71b22acdbe01545b267c36259b08f4bcd7a78b83cb669de63f8546e54e632af01637d139109ae6
6
+ metadata.gz: dace0f103100b6a9d4f6a0c997e0b556805d08db124257c201a5d492805b1abeadc6796d8e697e96a89f5cbf53dda844f7ec6f3fb99b005cde99999337117884
7
+ data.tar.gz: 90ae5d47af84244347dc9ddd66fc28ca197d616a6e18aee90c4b34b49c16fb93975459feb8529e11440429479357003c62a90a308a38e619d30b98029887a670
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2020-2025 AppFolio, Inc
1
+ Copyright (c) 2020-2026 AppFolio, Inc
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -12,10 +12,10 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = spec.description
13
13
  spec.homepage = 'https://github.com/appfolio/ae_active_job_state'
14
14
  spec.license = 'MIT'
15
- spec.files = Dir['**/*'].select { |f| f[%r{^(lib/|LICENSE.txt|.*gemspec)}] }
15
+ spec.files = Dir['**/*'].select { |f| f[%r{^(lib/|LICENSE.txt|ae_active_job_state\.gemspec)}] }
16
16
  spec.require_paths = ['lib']
17
17
 
18
- spec.required_ruby_version = Gem::Requirement.new('< 3.5')
18
+ spec.required_ruby_version = Gem::Requirement.new('< 4.1')
19
19
  spec.metadata['allowed_push_host'] = 'https://rubygems.org'
20
20
 
21
21
  spec.add_dependency('aasm', ['>= 5.1', '< 6'])
@@ -8,6 +8,7 @@ module AeActiveJobState
8
8
  validates :active_job_id, presence: true, uniqueness: { case_sensitive: false }
9
9
 
10
10
  include AASM
11
+
11
12
  aasm column: :status do
12
13
  state :pending, initial: true
13
14
  state :running
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AeActiveJobState
4
- VERSION = '1.6.0'
4
+ VERSION = '1.7.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ae_active_job_state
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - AppFolio
@@ -117,14 +117,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
117
117
  requirements:
118
118
  - - "<"
119
119
  - !ruby/object:Gem::Version
120
- version: '3.5'
120
+ version: '4.1'
121
121
  required_rubygems_version: !ruby/object:Gem::Requirement
122
122
  requirements:
123
123
  - - ">="
124
124
  - !ruby/object:Gem::Version
125
125
  version: '0'
126
126
  requirements: []
127
- rubygems_version: 3.7.2
127
+ rubygems_version: 4.0.7
128
128
  specification_version: 4
129
129
  summary: Store ActiveJob status in ActiveRecord
130
130
  test_files: []