paraduct 0.0.1.beta14 → 0.0.1.beta15
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/.travis.yml +1 -1
- data/lib/paraduct/parallel_runner.rb +5 -0
- data/lib/paraduct/runner.rb +1 -1
- data/lib/paraduct/version.rb +1 -1
- metadata +2 -2
    
        data/.travis.yml
    CHANGED
    
    
| @@ -35,6 +35,11 @@ START matrix test | |
| 35 35 | 
             
                          runner.logger.error "exitstatus=#{e.status}, #{e.inspect}"
         | 
| 36 36 | 
             
                          stdout = e.message
         | 
| 37 37 | 
             
                          successful = false
         | 
| 38 | 
            +
             | 
| 39 | 
            +
                        rescue Exception => e
         | 
| 40 | 
            +
                          runner.logger.error "Unknown error: #{e.inspect}"
         | 
| 41 | 
            +
                          runner.logger.error e.backtrace.join("\n")
         | 
| 42 | 
            +
                          successful = false
         | 
| 38 43 | 
             
                        end
         | 
| 39 44 |  | 
| 40 45 | 
             
                        runner.logger.info "[END]   params: #{runner.formatted_params}"
         | 
    
        data/lib/paraduct/runner.rb
    CHANGED
    
    | @@ -82,7 +82,7 @@ module Paraduct | |
| 82 82 | 
             
                    rescue Errno::EIO
         | 
| 83 83 | 
             
                    end
         | 
| 84 84 | 
             
                    exit_status = PTY.check(pid)
         | 
| 85 | 
            -
                    raise Paraduct::Errors::ProcessError.new(full_stdout, exit_status)  | 
| 85 | 
            +
                    raise Paraduct::Errors::ProcessError.new(full_stdout, exit_status) if exit_status && !exit_status.success?
         | 
| 86 86 | 
             
                  end
         | 
| 87 87 |  | 
| 88 88 | 
             
                  full_stdout
         | 
    
        data/lib/paraduct/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: paraduct
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.0.1. | 
| 4 | 
            +
              version: 0.0.1.beta15
         | 
| 5 5 | 
             
              prerelease: 6
         | 
| 6 6 | 
             
            platform: ruby
         | 
| 7 7 | 
             
            authors:
         | 
| @@ -369,7 +369,7 @@ required_ruby_version: !ruby/object:Gem::Requirement | |
| 369 369 | 
             
                  version: '0'
         | 
| 370 370 | 
             
                  segments:
         | 
| 371 371 | 
             
                  - 0
         | 
| 372 | 
            -
                  hash: - | 
| 372 | 
            +
                  hash: -64553715109510777
         | 
| 373 373 | 
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 374 374 | 
             
              none: false
         | 
| 375 375 | 
             
              requirements:
         |