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 +4 -4
 - data/LICENSE.txt +1 -1
 - data/ae_active_job_state.gemspec +12 -12
 - data/lib/ae_active_job_state/version.rb +1 -1
 - metadata +5 -5
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: e42688a53b3fe7effb20c191c9dbc76a3a9d40d99830bbe494bfe7ca74739ab7
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: ad703480b67724a4d8bcecfee1ade2194d1861b150ad5670720880ea5d1d5024
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 0becb7a14039e7254bf48b1a0e8a60256da8ba901a8e409fd91f486fbec8e813da3101adbeda26aeed600d487719c0a5512c67b95360b2945e6622c6e93ff74a
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: ef160689c1404379b3792465cefbe5c47b65ffb8e5bd43eb8c07d283fe6dd48b4be972f9f95d0d080b69af3dbb793718d842d73e1155fc9b1b321077045c71c4
         
     | 
    
        data/LICENSE.txt
    CHANGED
    
    
    
        data/ae_active_job_state.gemspec
    CHANGED
    
    | 
         @@ -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 
     | 
| 
       7 
     | 
    
         
            -
              spec.version 
     | 
| 
       8 
     | 
    
         
            -
              spec.platform 
     | 
| 
       9 
     | 
    
         
            -
              spec.author 
     | 
| 
       10 
     | 
    
         
            -
              spec.email 
     | 
| 
       11 
     | 
    
         
            -
              spec.description 
     | 
| 
       12 
     | 
    
         
            -
              spec.summary 
     | 
| 
       13 
     | 
    
         
            -
              spec.homepage 
     | 
| 
       14 
     | 
    
         
            -
              spec.license 
     | 
| 
       15 
     | 
    
         
            -
              spec.files 
     | 
| 
       16 
     | 
    
         
            -
              spec.require_paths 
     | 
| 
       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'])
         
     | 
    
        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. 
     | 
| 
      
 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:  
     | 
| 
      
 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:  
     | 
| 
      
 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. 
     | 
| 
      
 129 
     | 
    
         
            +
            rubygems_version: 3.5.3
         
     | 
| 
       130 
130 
     | 
    
         
             
            signing_key:
         
     | 
| 
       131 
131 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       132 
132 
     | 
    
         
             
            summary: Store ActiveJob status in ActiveRecord
         
     |