ae_active_job_state 1.2.0 → 1.3.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: 988762b864e140b4178d8a304662ddbbcf390340dfc20fa9d83adc1455ea161a
4
- data.tar.gz: 6aa4b0f15c29e578710845d4d6c0dc21b034245b098210f40053f9cc4bc53d90
3
+ metadata.gz: e42688a53b3fe7effb20c191c9dbc76a3a9d40d99830bbe494bfe7ca74739ab7
4
+ data.tar.gz: ad703480b67724a4d8bcecfee1ade2194d1861b150ad5670720880ea5d1d5024
5
5
  SHA512:
6
- metadata.gz: 45965055910d5ae6ae97a558ffab80fd561f3cecfb2705c18e371a3eb0275bd73a4256dbc750b4f25cc79eca13e9bbb7700a20b198c47734d4b47d8eae1300f5
7
- data.tar.gz: bcf2635bd613dda2106117243c7739b55234efc7810cecba7ce5112459975b8c3f10f2392efbf9b146029492d8dd851586115607689a0922f298b664157df673
6
+ metadata.gz: 0becb7a14039e7254bf48b1a0e8a60256da8ba901a8e409fd91f486fbec8e813da3101adbeda26aeed600d487719c0a5512c67b95360b2945e6622c6e93ff74a
7
+ data.tar.gz: ef160689c1404379b3792465cefbe5c47b65ffb8e5bd43eb8c07d283fe6dd48b4be972f9f95d0d080b69af3dbb793718d842d73e1155fc9b1b321077045c71c4
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2020-2023 AppFolio, Inc
1
+ Copyright (c) 2020-2024 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
@@ -3,19 +3,19 @@
3
3
  require_relative 'lib/ae_active_job_state/version'
4
4
 
5
5
  Gem::Specification.new do |spec|
6
- spec.name = 'ae_active_job_state'
7
- spec.version = AeActiveJobState::VERSION
8
- spec.platform = Gem::Platform::RUBY
9
- spec.author = 'AppFolio'
10
- spec.email = 'opensource@appfolio.com'
11
- spec.description = 'Store ActiveJob status in ActiveRecord'
12
- spec.summary = spec.description
13
- spec.homepage = 'https://github.com/appfolio/ae_active_job_state'
14
- spec.license = 'MIT'
15
- spec.files = Dir['**/*'].select { |f| f[%r{^(lib/|LICENSE.txt|.*gemspec)}] }
16
- spec.require_paths = ['lib']
17
- spec.required_ruby_version = Gem::Requirement.new('>= 2.6.3')
6
+ spec.name = 'ae_active_job_state'
7
+ spec.version = AeActiveJobState::VERSION
8
+ spec.platform = Gem::Platform::RUBY
9
+ spec.author = 'AppFolio'
10
+ spec.email = 'opensource@appfolio.com'
11
+ spec.description = 'Store ActiveJob status in ActiveRecord'
12
+ spec.summary = spec.description
13
+ spec.homepage = 'https://github.com/appfolio/ae_active_job_state'
14
+ spec.license = 'MIT'
15
+ spec.files = Dir['**/*'].select { |f| f[%r{^(lib/|LICENSE.txt|.*gemspec)}] }
16
+ spec.require_paths = ['lib']
18
17
 
18
+ spec.required_ruby_version = Gem::Requirement.new('< 3.4')
19
19
  spec.metadata['allowed_push_host'] = 'https://rubygems.org'
20
20
 
21
21
  spec.add_dependency('aasm', ['>= 5.1', '< 6'])
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AeActiveJobState
4
- VERSION = '1.2.0'
4
+ VERSION = '1.3.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ae_active_job_state
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - AppFolio
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-24 00:00:00.000000000 Z
11
+ date: 2024-02-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aasm
@@ -117,16 +117,16 @@ require_paths:
117
117
  - lib
118
118
  required_ruby_version: !ruby/object:Gem::Requirement
119
119
  requirements:
120
- - - ">="
120
+ - - "<"
121
121
  - !ruby/object:Gem::Version
122
- version: 2.6.3
122
+ version: '3.4'
123
123
  required_rubygems_version: !ruby/object:Gem::Requirement
124
124
  requirements:
125
125
  - - ">="
126
126
  - !ruby/object:Gem::Version
127
127
  version: '0'
128
128
  requirements: []
129
- rubygems_version: 3.4.17
129
+ rubygems_version: 3.5.3
130
130
  signing_key:
131
131
  specification_version: 4
132
132
  summary: Store ActiveJob status in ActiveRecord