simple_job 0.5.0 → 0.5.1
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.
- data/CHANGELOG.rdoc +3 -0
- data/lib/simple_job/sqs_job_queue.rb +1 -1
- data/lib/simple_job/version.rb +1 -1
- metadata +3 -3
    
        data/CHANGELOG.rdoc
    CHANGED
    
    
| @@ -166,7 +166,7 @@ class SQSJobQueue < JobQueue | |
| 166 166 | 
             
                    end
         | 
| 167 167 |  | 
| 168 168 | 
             
                    # NOTE: only executes if asynchronous_execute is set (after message has been confirmed)
         | 
| 169 | 
            -
                    message_handler.call( | 
| 169 | 
            +
                    message_handler.call(last_definition, last_message) if asynchronous_execute
         | 
| 170 170 |  | 
| 171 171 | 
             
                    log_execution(true, last_message, current_job_type, current_start_milliseconds)
         | 
| 172 172 |  | 
    
        data/lib/simple_job/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,13 +1,13 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification 
         | 
| 2 2 | 
             
            name: simple_job
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version 
         | 
| 4 | 
            -
              hash:  | 
| 4 | 
            +
              hash: 9
         | 
| 5 5 | 
             
              prerelease: 
         | 
| 6 6 | 
             
              segments: 
         | 
| 7 7 | 
             
              - 0
         | 
| 8 8 | 
             
              - 5
         | 
| 9 | 
            -
              -  | 
| 10 | 
            -
              version: 0.5. | 
| 9 | 
            +
              - 1
         | 
| 10 | 
            +
              version: 0.5.1
         | 
| 11 11 | 
             
            platform: ruby
         | 
| 12 12 | 
             
            authors: 
         | 
| 13 13 | 
             
            - David Dawson
         |