appsignal 3.0.9-java → 3.0.10-java
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/.gitmodules +3 -0
- data/.rubocop.yml +2 -2
- data/.semaphore/semaphore.yml +460 -39
- data/CHANGELOG.md +4 -0
- data/README.md +13 -13
- data/Rakefile +11 -10
- data/build_matrix.yml +106 -32
- data/ext/agent.yml +19 -19
- data/lib/appsignal/cli/diagnose.rb +8 -4
- data/lib/appsignal/version.rb +1 -1
- data/script/install_lintje +18 -0
- metadata +4 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 583ca81dbac9b0f2a97bddcc78d6cc8b7d0c441d2f663e74149c7124fd905a99
         | 
| 4 | 
            +
              data.tar.gz: 88c053a0691934eb136ec676b0602bc535a9cfbcda522302f49afccf1748de60
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 90e92909c60f8a0283c09e6749b4cfacc136c487f1e85e911fa18861d1e5aa7403640bbeb79d844ef5684a2c0ec689291b8e98d3da9ba2d758f1ce70f383f37f
         | 
| 7 | 
            +
              data.tar.gz: 57f40a72157fad7dd863bfadc063824d8f79a426d51782678a6364ab8f63242e76a4a7226a64464462f8db92629881bbce3d388560621526609f59b0f64037aa
         | 
    
        data/.gitmodules
    ADDED
    
    
    
        data/.rubocop.yml
    CHANGED
    
    
    
        data/.semaphore/semaphore.yml
    CHANGED
    
    | @@ -11,49 +11,41 @@ agent: | |
| 11 11 | 
             
                os_image: ubuntu1804
         | 
| 12 12 | 
             
            auto_cancel:
         | 
| 13 13 | 
             
              running:
         | 
| 14 | 
            -
                when: branch != 'main' AND branch != 'develop'
         | 
| 14 | 
            +
                when: branch != 'main' AND branch != 'develop' AND branch != 'diagnose-testing'
         | 
| 15 15 | 
             
            global_job_config:
         | 
| 16 16 | 
             
              env_vars:
         | 
| 17 | 
            +
              - name: RUNNING_IN_CI
         | 
| 18 | 
            +
                value: 'true'
         | 
| 17 19 | 
             
              - name: _BUNDLER_CACHE
         | 
| 18 20 | 
             
                value: v2
         | 
| 19 21 | 
             
              - name: _GEMS_CACHE
         | 
| 20 22 | 
             
                value: v2
         | 
| 21 | 
            -
              - name: BUNDLE_PATH
         | 
| 22 | 
            -
                value: "../.bundle/"
         | 
| 23 | 
            -
              - name: RUNNING_IN_CI
         | 
| 24 | 
            -
                value: 'true'
         | 
| 25 | 
            -
              - name: RAILS_ENV
         | 
| 26 | 
            -
                value: test
         | 
| 27 | 
            -
              - name: JRUBY_OPTS
         | 
| 28 | 
            -
                value: ''
         | 
| 29 | 
            -
              - name: COV
         | 
| 30 | 
            -
                value: '1'
         | 
| 31 23 | 
             
              prologue:
         | 
| 32 24 | 
             
                commands:
         | 
| 33 25 | 
             
                - checkout
         | 
| 34 26 | 
             
                - rm -f $HOME/.rbenv/plugins/rbenv-gem-rehash/etc/rbenv.d/exec/~gem-rehash.bash
         | 
| 35 | 
            -
                -  | 
| 36 | 
            -
             | 
| 37 | 
            -
             | 
| 38 | 
            -
             | 
| 39 | 
            -
             | 
| 40 | 
            -
             | 
| 41 | 
            -
                -  | 
| 42 | 
            -
             | 
| 43 | 
            -
             | 
| 44 | 
            -
             | 
| 45 | 
            -
                   | 
| 46 | 
            -
                     | 
| 47 | 
            -
                   | 
| 48 | 
            -
                on_fail:
         | 
| 49 | 
            -
                  commands:
         | 
| 50 | 
            -
                  - "[ -e ext/install.report ] && cat ext/install.report || echo 'No ext/install.report
         | 
| 51 | 
            -
                    file found'"
         | 
| 52 | 
            -
                  - "[ -f ext/mkmf.log ] && cat ext/mkmf.log || echo 'No ext/mkmf.log file found'"
         | 
| 27 | 
            +
                - |
         | 
| 28 | 
            +
                  if [ -n "$_C_VERSION" ]; then
         | 
| 29 | 
            +
                    sem-version c $_C_VERSION
         | 
| 30 | 
            +
                  else
         | 
| 31 | 
            +
                    echo Skipping C-lang install
         | 
| 32 | 
            +
                  fi
         | 
| 33 | 
            +
                - |
         | 
| 34 | 
            +
                  if [ -n "$RUBY_VERSION" ]; then
         | 
| 35 | 
            +
                    sem-version ruby $RUBY_VERSION
         | 
| 36 | 
            +
                    ./support/check_versions
         | 
| 37 | 
            +
                  else
         | 
| 38 | 
            +
                    echo Skipping Ruby install
         | 
| 39 | 
            +
                  fi
         | 
| 53 40 | 
             
            blocks:
         | 
| 54 41 | 
             
            - name: Validation
         | 
| 55 42 | 
             
              dependencies: []
         | 
| 56 43 | 
             
              task:
         | 
| 44 | 
            +
                prologue:
         | 
| 45 | 
            +
                  commands:
         | 
| 46 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 47 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 48 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 57 49 | 
             
                jobs:
         | 
| 58 50 | 
             
                - name: Validate CI setup
         | 
| 59 51 | 
             
                  env_vars:
         | 
| @@ -62,12 +54,24 @@ blocks: | |
| 62 54 | 
             
                  - name: GEMSET
         | 
| 63 55 | 
             
                    value: no_dependencies
         | 
| 64 56 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| 65 | 
            -
                    value:  | 
| 57 | 
            +
                    value: Gemfile
         | 
| 66 58 | 
             
                  commands:
         | 
| 67 59 | 
             
                  - "./support/bundler_wrapper exec rake build_matrix:semaphore:validate"
         | 
| 68 | 
            -
             | 
| 60 | 
            +
                epilogue:
         | 
| 61 | 
            +
                  on_pass:
         | 
| 62 | 
            +
                    commands:
         | 
| 63 | 
            +
                    - cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 64 | 
            +
                      .bundle
         | 
| 65 | 
            +
                    - cache store $_GEMS_CACHE-gems-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 66 | 
            +
                      $HOME/.gem
         | 
| 67 | 
            +
            - name: Ruby linters
         | 
| 69 68 | 
             
              dependencies: []
         | 
| 70 69 | 
             
              task:
         | 
| 70 | 
            +
                prologue:
         | 
| 71 | 
            +
                  commands:
         | 
| 72 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 73 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 74 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 71 75 | 
             
                jobs:
         | 
| 72 76 | 
             
                - name: RuboCop
         | 
| 73 77 | 
             
                  env_vars:
         | 
| @@ -76,19 +80,94 @@ blocks: | |
| 76 80 | 
             
                  - name: GEMSET
         | 
| 77 81 | 
             
                    value: no_dependencies
         | 
| 78 82 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| 79 | 
            -
                    value:  | 
| 83 | 
            +
                    value: Gemfile
         | 
| 80 84 | 
             
                  commands:
         | 
| 81 85 | 
             
                  - "./support/bundler_wrapper exec rubocop"
         | 
| 86 | 
            +
                epilogue:
         | 
| 87 | 
            +
                  on_pass:
         | 
| 88 | 
            +
                    commands:
         | 
| 89 | 
            +
                    - cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 90 | 
            +
                      .bundle
         | 
| 91 | 
            +
                    - cache store $_GEMS_CACHE-gems-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 92 | 
            +
                      $HOME/.gem
         | 
| 93 | 
            +
            - name: Other linters
         | 
| 94 | 
            +
              dependencies: []
         | 
| 95 | 
            +
              task:
         | 
| 96 | 
            +
                jobs:
         | 
| 97 | 
            +
                - name: Git Lint (Lintje)
         | 
| 98 | 
            +
                  env_vars:
         | 
| 99 | 
            +
                  - name: LINTJE_VERSION
         | 
| 100 | 
            +
                    value: 0.3.0
         | 
| 101 | 
            +
                  commands:
         | 
| 102 | 
            +
                  - script/install_lintje
         | 
| 103 | 
            +
                  - "$HOME/bin/lintje $SEMAPHORE_GIT_COMMIT_RANGE"
         | 
| 104 | 
            +
            - name: Integration tests
         | 
| 105 | 
            +
              dependencies:
         | 
| 106 | 
            +
              - Validation
         | 
| 107 | 
            +
              task:
         | 
| 108 | 
            +
                prologue:
         | 
| 109 | 
            +
                  commands:
         | 
| 110 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-diagnose-$(checksum Gemfile)
         | 
| 111 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-diagnose-$(checksum Gemfile)
         | 
| 112 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 113 | 
            +
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 114 | 
            +
                  - git submodule init
         | 
| 115 | 
            +
                  - git submodule update
         | 
| 116 | 
            +
                jobs:
         | 
| 117 | 
            +
                - name: Diagnose
         | 
| 118 | 
            +
                  env_vars:
         | 
| 119 | 
            +
                  - name: RUBY_VERSION
         | 
| 120 | 
            +
                    value: 2.6.6
         | 
| 121 | 
            +
                  - name: LANGUAGE
         | 
| 122 | 
            +
                    value: ruby
         | 
| 123 | 
            +
                  commands:
         | 
| 124 | 
            +
                  - spec/integration/diagnose/bin/test
         | 
| 125 | 
            +
                epilogue:
         | 
| 126 | 
            +
                  on_pass:
         | 
| 127 | 
            +
                    commands:
         | 
| 128 | 
            +
                    - cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-diagnose-$(checksum Gemfile)
         | 
| 129 | 
            +
                      .bundle
         | 
| 130 | 
            +
                    - cache store $_GEMS_CACHE-gems-$RUBY_VERSION-diagnose-$(checksum Gemfile)
         | 
| 131 | 
            +
                      $HOME/.gem
         | 
| 82 132 | 
             
            - name: Ruby 2.0.0-p648
         | 
| 83 133 | 
             
              dependencies:
         | 
| 84 134 | 
             
              - Validation
         | 
| 85 135 | 
             
              task:
         | 
| 86 136 | 
             
                prologue:
         | 
| 87 137 | 
             
                  commands:
         | 
| 138 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 139 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 140 | 
            +
                  - "./support/install_deps"
         | 
| 141 | 
            +
                  - bundle config set clean 'true'
         | 
| 142 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 88 143 | 
             
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 144 | 
            +
                epilogue: &1
         | 
| 145 | 
            +
                  on_pass:
         | 
| 146 | 
            +
                    commands:
         | 
| 147 | 
            +
                    - cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 148 | 
            +
                      .bundle
         | 
| 149 | 
            +
                    - cache store $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 150 | 
            +
                      $HOME/.gem
         | 
| 151 | 
            +
                  on_fail:
         | 
| 152 | 
            +
                    commands:
         | 
| 153 | 
            +
                    - "[ -e ext/install.report ] && cat ext/install.report || echo 'No ext/install.report
         | 
| 154 | 
            +
                      file found'"
         | 
| 155 | 
            +
                    - "[ -f ext/mkmf.log ] && cat ext/mkmf.log || echo 'No ext/mkmf.log file found'"
         | 
| 89 156 | 
             
                jobs:
         | 
| 90 157 | 
             
                - name: Ruby 2.0.0-p648 for no_dependencies
         | 
| 91 158 | 
             
                  env_vars:
         | 
| 159 | 
            +
                  - &2
         | 
| 160 | 
            +
                    name: BUNDLE_PATH
         | 
| 161 | 
            +
                    value: "../.bundle/"
         | 
| 162 | 
            +
                  - &3
         | 
| 163 | 
            +
                    name: RAILS_ENV
         | 
| 164 | 
            +
                    value: test
         | 
| 165 | 
            +
                  - &4
         | 
| 166 | 
            +
                    name: JRUBY_OPTS
         | 
| 167 | 
            +
                    value: ''
         | 
| 168 | 
            +
                  - &5
         | 
| 169 | 
            +
                    name: COV
         | 
| 170 | 
            +
                    value: '1'
         | 
| 92 171 | 
             
                  - name: RUBY_VERSION
         | 
| 93 172 | 
             
                    value: 2.0.0-p648
         | 
| 94 173 | 
             
                  - name: GEMSET
         | 
| @@ -108,10 +187,20 @@ blocks: | |
| 108 187 | 
             
              task:
         | 
| 109 188 | 
             
                prologue:
         | 
| 110 189 | 
             
                  commands:
         | 
| 190 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 191 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 192 | 
            +
                  - "./support/install_deps"
         | 
| 193 | 
            +
                  - bundle config set clean 'true'
         | 
| 194 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 111 195 | 
             
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 196 | 
            +
                epilogue: *1
         | 
| 112 197 | 
             
                jobs:
         | 
| 113 198 | 
             
                - name: Ruby 2.0.0-p648 for rails-3.2
         | 
| 114 199 | 
             
                  env_vars:
         | 
| 200 | 
            +
                  - *2
         | 
| 201 | 
            +
                  - *3
         | 
| 202 | 
            +
                  - *4
         | 
| 203 | 
            +
                  - *5
         | 
| 115 204 | 
             
                  - name: RUBY_VERSION
         | 
| 116 205 | 
             
                    value: 2.0.0-p648
         | 
| 117 206 | 
             
                  - name: GEMSET
         | 
| @@ -127,6 +216,10 @@ blocks: | |
| 127 216 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 128 217 | 
             
                - name: Ruby 2.0.0-p648 for rails-4.2
         | 
| 129 218 | 
             
                  env_vars:
         | 
| 219 | 
            +
                  - *2
         | 
| 220 | 
            +
                  - *3
         | 
| 221 | 
            +
                  - *4
         | 
| 222 | 
            +
                  - *5
         | 
| 130 223 | 
             
                  - name: RUBY_VERSION
         | 
| 131 224 | 
             
                    value: 2.0.0-p648
         | 
| 132 225 | 
             
                  - name: GEMSET
         | 
| @@ -146,10 +239,20 @@ blocks: | |
| 146 239 | 
             
              task:
         | 
| 147 240 | 
             
                prologue:
         | 
| 148 241 | 
             
                  commands:
         | 
| 242 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 243 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 244 | 
            +
                  - "./support/install_deps"
         | 
| 245 | 
            +
                  - bundle config set clean 'true'
         | 
| 246 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 149 247 | 
             
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 248 | 
            +
                epilogue: *1
         | 
| 150 249 | 
             
                jobs:
         | 
| 151 250 | 
             
                - name: Ruby 2.1.10 for no_dependencies
         | 
| 152 251 | 
             
                  env_vars:
         | 
| 252 | 
            +
                  - *2
         | 
| 253 | 
            +
                  - *3
         | 
| 254 | 
            +
                  - *4
         | 
| 255 | 
            +
                  - *5
         | 
| 153 256 | 
             
                  - name: RUBY_VERSION
         | 
| 154 257 | 
             
                    value: 2.1.10
         | 
| 155 258 | 
             
                  - name: GEMSET
         | 
| @@ -169,10 +272,20 @@ blocks: | |
| 169 272 | 
             
              task:
         | 
| 170 273 | 
             
                prologue:
         | 
| 171 274 | 
             
                  commands:
         | 
| 275 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 276 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 277 | 
            +
                  - "./support/install_deps"
         | 
| 278 | 
            +
                  - bundle config set clean 'true'
         | 
| 279 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 172 280 | 
             
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 281 | 
            +
                epilogue: *1
         | 
| 173 282 | 
             
                jobs:
         | 
| 174 283 | 
             
                - name: Ruby 2.2.10 for no_dependencies
         | 
| 175 284 | 
             
                  env_vars:
         | 
| 285 | 
            +
                  - *2
         | 
| 286 | 
            +
                  - *3
         | 
| 287 | 
            +
                  - *4
         | 
| 288 | 
            +
                  - *5
         | 
| 176 289 | 
             
                  - name: RUBY_VERSION
         | 
| 177 290 | 
             
                    value: 2.2.10
         | 
| 178 291 | 
             
                  - name: GEMSET
         | 
| @@ -192,10 +305,20 @@ blocks: | |
| 192 305 | 
             
              task:
         | 
| 193 306 | 
             
                prologue:
         | 
| 194 307 | 
             
                  commands:
         | 
| 308 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 309 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 310 | 
            +
                  - "./support/install_deps"
         | 
| 311 | 
            +
                  - bundle config set clean 'true'
         | 
| 312 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 195 313 | 
             
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 314 | 
            +
                epilogue: *1
         | 
| 196 315 | 
             
                jobs:
         | 
| 197 316 | 
             
                - name: Ruby 2.3.8 for no_dependencies
         | 
| 198 317 | 
             
                  env_vars:
         | 
| 318 | 
            +
                  - *2
         | 
| 319 | 
            +
                  - *3
         | 
| 320 | 
            +
                  - *4
         | 
| 321 | 
            +
                  - *5
         | 
| 199 322 | 
             
                  - name: RUBY_VERSION
         | 
| 200 323 | 
             
                    value: 2.3.8
         | 
| 201 324 | 
             
                  - name: GEMSET
         | 
| @@ -215,10 +338,20 @@ blocks: | |
| 215 338 | 
             
              task:
         | 
| 216 339 | 
             
                prologue:
         | 
| 217 340 | 
             
                  commands:
         | 
| 341 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 342 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 343 | 
            +
                  - "./support/install_deps"
         | 
| 344 | 
            +
                  - bundle config set clean 'true'
         | 
| 345 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 218 346 | 
             
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 347 | 
            +
                epilogue: *1
         | 
| 219 348 | 
             
                jobs:
         | 
| 220 349 | 
             
                - name: Ruby 2.4.10 for no_dependencies
         | 
| 221 350 | 
             
                  env_vars:
         | 
| 351 | 
            +
                  - *2
         | 
| 352 | 
            +
                  - *3
         | 
| 353 | 
            +
                  - *4
         | 
| 354 | 
            +
                  - *5
         | 
| 222 355 | 
             
                  - name: RUBY_VERSION
         | 
| 223 356 | 
             
                    value: 2.4.10
         | 
| 224 357 | 
             
                  - name: GEMSET
         | 
| @@ -238,10 +371,20 @@ blocks: | |
| 238 371 | 
             
              task:
         | 
| 239 372 | 
             
                prologue:
         | 
| 240 373 | 
             
                  commands:
         | 
| 374 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 375 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 376 | 
            +
                  - "./support/install_deps"
         | 
| 377 | 
            +
                  - bundle config set clean 'true'
         | 
| 378 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 241 379 | 
             
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 380 | 
            +
                epilogue: *1
         | 
| 242 381 | 
             
                jobs:
         | 
| 243 382 | 
             
                - name: Ruby 2.5.8 for no_dependencies
         | 
| 244 383 | 
             
                  env_vars:
         | 
| 384 | 
            +
                  - *2
         | 
| 385 | 
            +
                  - *3
         | 
| 386 | 
            +
                  - *4
         | 
| 387 | 
            +
                  - *5
         | 
| 245 388 | 
             
                  - name: RUBY_VERSION
         | 
| 246 389 | 
             
                    value: 2.5.8
         | 
| 247 390 | 
             
                  - name: GEMSET
         | 
| @@ -261,10 +404,20 @@ blocks: | |
| 261 404 | 
             
              task:
         | 
| 262 405 | 
             
                prologue:
         | 
| 263 406 | 
             
                  commands:
         | 
| 407 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 408 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 409 | 
            +
                  - "./support/install_deps"
         | 
| 410 | 
            +
                  - bundle config set clean 'true'
         | 
| 411 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 264 412 | 
             
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 413 | 
            +
                epilogue: *1
         | 
| 265 414 | 
             
                jobs:
         | 
| 266 415 | 
             
                - name: Ruby 2.5.8 for rails-5.2
         | 
| 267 416 | 
             
                  env_vars:
         | 
| 417 | 
            +
                  - *2
         | 
| 418 | 
            +
                  - *3
         | 
| 419 | 
            +
                  - *4
         | 
| 420 | 
            +
                  - *5
         | 
| 268 421 | 
             
                  - name: RUBY_VERSION
         | 
| 269 422 | 
             
                    value: 2.5.8
         | 
| 270 423 | 
             
                  - name: GEMSET
         | 
| @@ -280,6 +433,10 @@ blocks: | |
| 280 433 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 281 434 | 
             
                - name: Ruby 2.5.8 for rails-6.0
         | 
| 282 435 | 
             
                  env_vars:
         | 
| 436 | 
            +
                  - *2
         | 
| 437 | 
            +
                  - *3
         | 
| 438 | 
            +
                  - *4
         | 
| 439 | 
            +
                  - *5
         | 
| 283 440 | 
             
                  - name: RUBY_VERSION
         | 
| 284 441 | 
             
                    value: 2.5.8
         | 
| 285 442 | 
             
                  - name: GEMSET
         | 
| @@ -299,10 +456,20 @@ blocks: | |
| 299 456 | 
             
              task:
         | 
| 300 457 | 
             
                prologue:
         | 
| 301 458 | 
             
                  commands:
         | 
| 459 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 460 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 461 | 
            +
                  - "./support/install_deps"
         | 
| 462 | 
            +
                  - bundle config set clean 'true'
         | 
| 463 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 302 464 | 
             
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 465 | 
            +
                epilogue: *1
         | 
| 303 466 | 
             
                jobs:
         | 
| 304 467 | 
             
                - name: Ruby 2.6.6 for no_dependencies
         | 
| 305 468 | 
             
                  env_vars:
         | 
| 469 | 
            +
                  - *2
         | 
| 470 | 
            +
                  - *3
         | 
| 471 | 
            +
                  - *4
         | 
| 472 | 
            +
                  - *5
         | 
| 306 473 | 
             
                  - name: RUBY_VERSION
         | 
| 307 474 | 
             
                    value: 2.6.6
         | 
| 308 475 | 
             
                  - name: GEMSET
         | 
| @@ -322,10 +489,20 @@ blocks: | |
| 322 489 | 
             
              task:
         | 
| 323 490 | 
             
                prologue:
         | 
| 324 491 | 
             
                  commands:
         | 
| 492 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 493 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 494 | 
            +
                  - "./support/install_deps"
         | 
| 495 | 
            +
                  - bundle config set clean 'true'
         | 
| 496 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 325 497 | 
             
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 498 | 
            +
                epilogue: *1
         | 
| 326 499 | 
             
                jobs:
         | 
| 327 500 | 
             
                - name: Ruby 2.6.6 for capistrano2
         | 
| 328 501 | 
             
                  env_vars:
         | 
| 502 | 
            +
                  - *2
         | 
| 503 | 
            +
                  - *3
         | 
| 504 | 
            +
                  - *4
         | 
| 505 | 
            +
                  - *5
         | 
| 329 506 | 
             
                  - name: RUBY_VERSION
         | 
| 330 507 | 
             
                    value: 2.6.6
         | 
| 331 508 | 
             
                  - name: GEMSET
         | 
| @@ -341,6 +518,10 @@ blocks: | |
| 341 518 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 342 519 | 
             
                - name: Ruby 2.6.6 for capistrano3
         | 
| 343 520 | 
             
                  env_vars:
         | 
| 521 | 
            +
                  - *2
         | 
| 522 | 
            +
                  - *3
         | 
| 523 | 
            +
                  - *4
         | 
| 524 | 
            +
                  - *5
         | 
| 344 525 | 
             
                  - name: RUBY_VERSION
         | 
| 345 526 | 
             
                    value: 2.6.6
         | 
| 346 527 | 
             
                  - name: GEMSET
         | 
| @@ -356,6 +537,10 @@ blocks: | |
| 356 537 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 357 538 | 
             
                - name: Ruby 2.6.6 for grape
         | 
| 358 539 | 
             
                  env_vars:
         | 
| 540 | 
            +
                  - *2
         | 
| 541 | 
            +
                  - *3
         | 
| 542 | 
            +
                  - *4
         | 
| 543 | 
            +
                  - *5
         | 
| 359 544 | 
             
                  - name: RUBY_VERSION
         | 
| 360 545 | 
             
                    value: 2.6.6
         | 
| 361 546 | 
             
                  - name: GEMSET
         | 
| @@ -371,6 +556,10 @@ blocks: | |
| 371 556 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 372 557 | 
             
                - name: Ruby 2.6.6 for padrino
         | 
| 373 558 | 
             
                  env_vars:
         | 
| 559 | 
            +
                  - *2
         | 
| 560 | 
            +
                  - *3
         | 
| 561 | 
            +
                  - *4
         | 
| 562 | 
            +
                  - *5
         | 
| 374 563 | 
             
                  - name: RUBY_VERSION
         | 
| 375 564 | 
             
                    value: 2.6.6
         | 
| 376 565 | 
             
                  - name: GEMSET
         | 
| @@ -386,6 +575,10 @@ blocks: | |
| 386 575 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 387 576 | 
             
                - name: Ruby 2.6.6 for que
         | 
| 388 577 | 
             
                  env_vars:
         | 
| 578 | 
            +
                  - *2
         | 
| 579 | 
            +
                  - *3
         | 
| 580 | 
            +
                  - *4
         | 
| 581 | 
            +
                  - *5
         | 
| 389 582 | 
             
                  - name: RUBY_VERSION
         | 
| 390 583 | 
             
                    value: 2.6.6
         | 
| 391 584 | 
             
                  - name: GEMSET
         | 
| @@ -401,6 +594,10 @@ blocks: | |
| 401 594 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 402 595 | 
             
                - name: Ruby 2.6.6 for que_beta
         | 
| 403 596 | 
             
                  env_vars:
         | 
| 597 | 
            +
                  - *2
         | 
| 598 | 
            +
                  - *3
         | 
| 599 | 
            +
                  - *4
         | 
| 600 | 
            +
                  - *5
         | 
| 404 601 | 
             
                  - name: RUBY_VERSION
         | 
| 405 602 | 
             
                    value: 2.6.6
         | 
| 406 603 | 
             
                  - name: GEMSET
         | 
| @@ -416,6 +613,10 @@ blocks: | |
| 416 613 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 417 614 | 
             
                - name: Ruby 2.6.6 for rails-5.0
         | 
| 418 615 | 
             
                  env_vars:
         | 
| 616 | 
            +
                  - *2
         | 
| 617 | 
            +
                  - *3
         | 
| 618 | 
            +
                  - *4
         | 
| 619 | 
            +
                  - *5
         | 
| 419 620 | 
             
                  - name: RUBY_VERSION
         | 
| 420 621 | 
             
                    value: 2.6.6
         | 
| 421 622 | 
             
                  - name: GEMSET
         | 
| @@ -431,6 +632,10 @@ blocks: | |
| 431 632 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 432 633 | 
             
                - name: Ruby 2.6.6 for rails-5.1
         | 
| 433 634 | 
             
                  env_vars:
         | 
| 635 | 
            +
                  - *2
         | 
| 636 | 
            +
                  - *3
         | 
| 637 | 
            +
                  - *4
         | 
| 638 | 
            +
                  - *5
         | 
| 434 639 | 
             
                  - name: RUBY_VERSION
         | 
| 435 640 | 
             
                    value: 2.6.6
         | 
| 436 641 | 
             
                  - name: GEMSET
         | 
| @@ -446,6 +651,10 @@ blocks: | |
| 446 651 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 447 652 | 
             
                - name: Ruby 2.6.6 for rails-5.2
         | 
| 448 653 | 
             
                  env_vars:
         | 
| 654 | 
            +
                  - *2
         | 
| 655 | 
            +
                  - *3
         | 
| 656 | 
            +
                  - *4
         | 
| 657 | 
            +
                  - *5
         | 
| 449 658 | 
             
                  - name: RUBY_VERSION
         | 
| 450 659 | 
             
                    value: 2.6.6
         | 
| 451 660 | 
             
                  - name: GEMSET
         | 
| @@ -461,6 +670,10 @@ blocks: | |
| 461 670 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 462 671 | 
             
                - name: Ruby 2.6.6 for rails-6.0
         | 
| 463 672 | 
             
                  env_vars:
         | 
| 673 | 
            +
                  - *2
         | 
| 674 | 
            +
                  - *3
         | 
| 675 | 
            +
                  - *4
         | 
| 676 | 
            +
                  - *5
         | 
| 464 677 | 
             
                  - name: RUBY_VERSION
         | 
| 465 678 | 
             
                    value: 2.6.6
         | 
| 466 679 | 
             
                  - name: GEMSET
         | 
| @@ -476,6 +689,10 @@ blocks: | |
| 476 689 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 477 690 | 
             
                - name: Ruby 2.6.6 for resque-1
         | 
| 478 691 | 
             
                  env_vars:
         | 
| 692 | 
            +
                  - *2
         | 
| 693 | 
            +
                  - *3
         | 
| 694 | 
            +
                  - *4
         | 
| 695 | 
            +
                  - *5
         | 
| 479 696 | 
             
                  - name: RUBY_VERSION
         | 
| 480 697 | 
             
                    value: 2.6.6
         | 
| 481 698 | 
             
                  - name: GEMSET
         | 
| @@ -491,6 +708,10 @@ blocks: | |
| 491 708 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 492 709 | 
             
                - name: Ruby 2.6.6 for resque-2
         | 
| 493 710 | 
             
                  env_vars:
         | 
| 711 | 
            +
                  - *2
         | 
| 712 | 
            +
                  - *3
         | 
| 713 | 
            +
                  - *4
         | 
| 714 | 
            +
                  - *5
         | 
| 494 715 | 
             
                  - name: RUBY_VERSION
         | 
| 495 716 | 
             
                    value: 2.6.6
         | 
| 496 717 | 
             
                  - name: GEMSET
         | 
| @@ -506,6 +727,10 @@ blocks: | |
| 506 727 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 507 728 | 
             
                - name: Ruby 2.6.6 for sequel
         | 
| 508 729 | 
             
                  env_vars:
         | 
| 730 | 
            +
                  - *2
         | 
| 731 | 
            +
                  - *3
         | 
| 732 | 
            +
                  - *4
         | 
| 733 | 
            +
                  - *5
         | 
| 509 734 | 
             
                  - name: RUBY_VERSION
         | 
| 510 735 | 
             
                    value: 2.6.6
         | 
| 511 736 | 
             
                  - name: GEMSET
         | 
| @@ -521,6 +746,10 @@ blocks: | |
| 521 746 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 522 747 | 
             
                - name: Ruby 2.6.6 for sequel-435
         | 
| 523 748 | 
             
                  env_vars:
         | 
| 749 | 
            +
                  - *2
         | 
| 750 | 
            +
                  - *3
         | 
| 751 | 
            +
                  - *4
         | 
| 752 | 
            +
                  - *5
         | 
| 524 753 | 
             
                  - name: RUBY_VERSION
         | 
| 525 754 | 
             
                    value: 2.6.6
         | 
| 526 755 | 
             
                  - name: GEMSET
         | 
| @@ -536,6 +765,10 @@ blocks: | |
| 536 765 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 537 766 | 
             
                - name: Ruby 2.6.6 for sinatra
         | 
| 538 767 | 
             
                  env_vars:
         | 
| 768 | 
            +
                  - *2
         | 
| 769 | 
            +
                  - *3
         | 
| 770 | 
            +
                  - *4
         | 
| 771 | 
            +
                  - *5
         | 
| 539 772 | 
             
                  - name: RUBY_VERSION
         | 
| 540 773 | 
             
                    value: 2.6.6
         | 
| 541 774 | 
             
                  - name: GEMSET
         | 
| @@ -551,6 +784,10 @@ blocks: | |
| 551 784 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 552 785 | 
             
                - name: Ruby 2.6.6 for webmachine
         | 
| 553 786 | 
             
                  env_vars:
         | 
| 787 | 
            +
                  - *2
         | 
| 788 | 
            +
                  - *3
         | 
| 789 | 
            +
                  - *4
         | 
| 790 | 
            +
                  - *5
         | 
| 554 791 | 
             
                  - name: RUBY_VERSION
         | 
| 555 792 | 
             
                    value: 2.6.6
         | 
| 556 793 | 
             
                  - name: GEMSET
         | 
| @@ -570,10 +807,20 @@ blocks: | |
| 570 807 | 
             
              task:
         | 
| 571 808 | 
             
                prologue:
         | 
| 572 809 | 
             
                  commands:
         | 
| 810 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 811 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 812 | 
            +
                  - "./support/install_deps"
         | 
| 813 | 
            +
                  - bundle config set clean 'true'
         | 
| 814 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 573 815 | 
             
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 816 | 
            +
                epilogue: *1
         | 
| 574 817 | 
             
                jobs:
         | 
| 575 818 | 
             
                - name: Ruby 2.7.3 for no_dependencies
         | 
| 576 819 | 
             
                  env_vars:
         | 
| 820 | 
            +
                  - *2
         | 
| 821 | 
            +
                  - *3
         | 
| 822 | 
            +
                  - *4
         | 
| 823 | 
            +
                  - *5
         | 
| 577 824 | 
             
                  - name: RUBY_VERSION
         | 
| 578 825 | 
             
                    value: 2.7.3
         | 
| 579 826 | 
             
                  - name: GEMSET
         | 
| @@ -593,10 +840,20 @@ blocks: | |
| 593 840 | 
             
              task:
         | 
| 594 841 | 
             
                prologue:
         | 
| 595 842 | 
             
                  commands:
         | 
| 843 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 844 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 845 | 
            +
                  - "./support/install_deps"
         | 
| 846 | 
            +
                  - bundle config set clean 'true'
         | 
| 847 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 596 848 | 
             
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 849 | 
            +
                epilogue: *1
         | 
| 597 850 | 
             
                jobs:
         | 
| 598 851 | 
             
                - name: Ruby 2.7.3 for capistrano2
         | 
| 599 852 | 
             
                  env_vars:
         | 
| 853 | 
            +
                  - *2
         | 
| 854 | 
            +
                  - *3
         | 
| 855 | 
            +
                  - *4
         | 
| 856 | 
            +
                  - *5
         | 
| 600 857 | 
             
                  - name: RUBY_VERSION
         | 
| 601 858 | 
             
                    value: 2.7.3
         | 
| 602 859 | 
             
                  - name: GEMSET
         | 
| @@ -612,6 +869,10 @@ blocks: | |
| 612 869 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 613 870 | 
             
                - name: Ruby 2.7.3 for capistrano3
         | 
| 614 871 | 
             
                  env_vars:
         | 
| 872 | 
            +
                  - *2
         | 
| 873 | 
            +
                  - *3
         | 
| 874 | 
            +
                  - *4
         | 
| 875 | 
            +
                  - *5
         | 
| 615 876 | 
             
                  - name: RUBY_VERSION
         | 
| 616 877 | 
             
                    value: 2.7.3
         | 
| 617 878 | 
             
                  - name: GEMSET
         | 
| @@ -627,6 +888,10 @@ blocks: | |
| 627 888 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 628 889 | 
             
                - name: Ruby 2.7.3 for grape
         | 
| 629 890 | 
             
                  env_vars:
         | 
| 891 | 
            +
                  - *2
         | 
| 892 | 
            +
                  - *3
         | 
| 893 | 
            +
                  - *4
         | 
| 894 | 
            +
                  - *5
         | 
| 630 895 | 
             
                  - name: RUBY_VERSION
         | 
| 631 896 | 
             
                    value: 2.7.3
         | 
| 632 897 | 
             
                  - name: GEMSET
         | 
| @@ -642,6 +907,10 @@ blocks: | |
| 642 907 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 643 908 | 
             
                - name: Ruby 2.7.3 for padrino
         | 
| 644 909 | 
             
                  env_vars:
         | 
| 910 | 
            +
                  - *2
         | 
| 911 | 
            +
                  - *3
         | 
| 912 | 
            +
                  - *4
         | 
| 913 | 
            +
                  - *5
         | 
| 645 914 | 
             
                  - name: RUBY_VERSION
         | 
| 646 915 | 
             
                    value: 2.7.3
         | 
| 647 916 | 
             
                  - name: GEMSET
         | 
| @@ -657,6 +926,10 @@ blocks: | |
| 657 926 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 658 927 | 
             
                - name: Ruby 2.7.3 for que
         | 
| 659 928 | 
             
                  env_vars:
         | 
| 929 | 
            +
                  - *2
         | 
| 930 | 
            +
                  - *3
         | 
| 931 | 
            +
                  - *4
         | 
| 932 | 
            +
                  - *5
         | 
| 660 933 | 
             
                  - name: RUBY_VERSION
         | 
| 661 934 | 
             
                    value: 2.7.3
         | 
| 662 935 | 
             
                  - name: GEMSET
         | 
| @@ -672,6 +945,10 @@ blocks: | |
| 672 945 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 673 946 | 
             
                - name: Ruby 2.7.3 for que_beta
         | 
| 674 947 | 
             
                  env_vars:
         | 
| 948 | 
            +
                  - *2
         | 
| 949 | 
            +
                  - *3
         | 
| 950 | 
            +
                  - *4
         | 
| 951 | 
            +
                  - *5
         | 
| 675 952 | 
             
                  - name: RUBY_VERSION
         | 
| 676 953 | 
             
                    value: 2.7.3
         | 
| 677 954 | 
             
                  - name: GEMSET
         | 
| @@ -687,6 +964,10 @@ blocks: | |
| 687 964 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 688 965 | 
             
                - name: Ruby 2.7.3 for rails-5.0
         | 
| 689 966 | 
             
                  env_vars:
         | 
| 967 | 
            +
                  - *2
         | 
| 968 | 
            +
                  - *3
         | 
| 969 | 
            +
                  - *4
         | 
| 970 | 
            +
                  - *5
         | 
| 690 971 | 
             
                  - name: RUBY_VERSION
         | 
| 691 972 | 
             
                    value: 2.7.3
         | 
| 692 973 | 
             
                  - name: GEMSET
         | 
| @@ -702,6 +983,10 @@ blocks: | |
| 702 983 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 703 984 | 
             
                - name: Ruby 2.7.3 for rails-5.1
         | 
| 704 985 | 
             
                  env_vars:
         | 
| 986 | 
            +
                  - *2
         | 
| 987 | 
            +
                  - *3
         | 
| 988 | 
            +
                  - *4
         | 
| 989 | 
            +
                  - *5
         | 
| 705 990 | 
             
                  - name: RUBY_VERSION
         | 
| 706 991 | 
             
                    value: 2.7.3
         | 
| 707 992 | 
             
                  - name: GEMSET
         | 
| @@ -717,6 +1002,10 @@ blocks: | |
| 717 1002 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 718 1003 | 
             
                - name: Ruby 2.7.3 for rails-5.2
         | 
| 719 1004 | 
             
                  env_vars:
         | 
| 1005 | 
            +
                  - *2
         | 
| 1006 | 
            +
                  - *3
         | 
| 1007 | 
            +
                  - *4
         | 
| 1008 | 
            +
                  - *5
         | 
| 720 1009 | 
             
                  - name: RUBY_VERSION
         | 
| 721 1010 | 
             
                    value: 2.7.3
         | 
| 722 1011 | 
             
                  - name: GEMSET
         | 
| @@ -732,6 +1021,10 @@ blocks: | |
| 732 1021 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 733 1022 | 
             
                - name: Ruby 2.7.3 for rails-6.0
         | 
| 734 1023 | 
             
                  env_vars:
         | 
| 1024 | 
            +
                  - *2
         | 
| 1025 | 
            +
                  - *3
         | 
| 1026 | 
            +
                  - *4
         | 
| 1027 | 
            +
                  - *5
         | 
| 735 1028 | 
             
                  - name: RUBY_VERSION
         | 
| 736 1029 | 
             
                    value: 2.7.3
         | 
| 737 1030 | 
             
                  - name: GEMSET
         | 
| @@ -747,6 +1040,10 @@ blocks: | |
| 747 1040 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 748 1041 | 
             
                - name: Ruby 2.7.3 for resque-1
         | 
| 749 1042 | 
             
                  env_vars:
         | 
| 1043 | 
            +
                  - *2
         | 
| 1044 | 
            +
                  - *3
         | 
| 1045 | 
            +
                  - *4
         | 
| 1046 | 
            +
                  - *5
         | 
| 750 1047 | 
             
                  - name: RUBY_VERSION
         | 
| 751 1048 | 
             
                    value: 2.7.3
         | 
| 752 1049 | 
             
                  - name: GEMSET
         | 
| @@ -762,6 +1059,10 @@ blocks: | |
| 762 1059 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 763 1060 | 
             
                - name: Ruby 2.7.3 for resque-2
         | 
| 764 1061 | 
             
                  env_vars:
         | 
| 1062 | 
            +
                  - *2
         | 
| 1063 | 
            +
                  - *3
         | 
| 1064 | 
            +
                  - *4
         | 
| 1065 | 
            +
                  - *5
         | 
| 765 1066 | 
             
                  - name: RUBY_VERSION
         | 
| 766 1067 | 
             
                    value: 2.7.3
         | 
| 767 1068 | 
             
                  - name: GEMSET
         | 
| @@ -777,6 +1078,10 @@ blocks: | |
| 777 1078 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 778 1079 | 
             
                - name: Ruby 2.7.3 for sequel
         | 
| 779 1080 | 
             
                  env_vars:
         | 
| 1081 | 
            +
                  - *2
         | 
| 1082 | 
            +
                  - *3
         | 
| 1083 | 
            +
                  - *4
         | 
| 1084 | 
            +
                  - *5
         | 
| 780 1085 | 
             
                  - name: RUBY_VERSION
         | 
| 781 1086 | 
             
                    value: 2.7.3
         | 
| 782 1087 | 
             
                  - name: GEMSET
         | 
| @@ -792,6 +1097,10 @@ blocks: | |
| 792 1097 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 793 1098 | 
             
                - name: Ruby 2.7.3 for sequel-435
         | 
| 794 1099 | 
             
                  env_vars:
         | 
| 1100 | 
            +
                  - *2
         | 
| 1101 | 
            +
                  - *3
         | 
| 1102 | 
            +
                  - *4
         | 
| 1103 | 
            +
                  - *5
         | 
| 795 1104 | 
             
                  - name: RUBY_VERSION
         | 
| 796 1105 | 
             
                    value: 2.7.3
         | 
| 797 1106 | 
             
                  - name: GEMSET
         | 
| @@ -807,6 +1116,10 @@ blocks: | |
| 807 1116 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 808 1117 | 
             
                - name: Ruby 2.7.3 for sinatra
         | 
| 809 1118 | 
             
                  env_vars:
         | 
| 1119 | 
            +
                  - *2
         | 
| 1120 | 
            +
                  - *3
         | 
| 1121 | 
            +
                  - *4
         | 
| 1122 | 
            +
                  - *5
         | 
| 810 1123 | 
             
                  - name: RUBY_VERSION
         | 
| 811 1124 | 
             
                    value: 2.7.3
         | 
| 812 1125 | 
             
                  - name: GEMSET
         | 
| @@ -822,6 +1135,10 @@ blocks: | |
| 822 1135 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 823 1136 | 
             
                - name: Ruby 2.7.3 for webmachine
         | 
| 824 1137 | 
             
                  env_vars:
         | 
| 1138 | 
            +
                  - *2
         | 
| 1139 | 
            +
                  - *3
         | 
| 1140 | 
            +
                  - *4
         | 
| 1141 | 
            +
                  - *5
         | 
| 825 1142 | 
             
                  - name: RUBY_VERSION
         | 
| 826 1143 | 
             
                    value: 2.7.3
         | 
| 827 1144 | 
             
                  - name: GEMSET
         | 
| @@ -841,10 +1158,20 @@ blocks: | |
| 841 1158 | 
             
              task:
         | 
| 842 1159 | 
             
                prologue:
         | 
| 843 1160 | 
             
                  commands:
         | 
| 1161 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 1162 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 1163 | 
            +
                  - "./support/install_deps"
         | 
| 1164 | 
            +
                  - bundle config set clean 'true'
         | 
| 1165 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 844 1166 | 
             
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 1167 | 
            +
                epilogue: *1
         | 
| 845 1168 | 
             
                jobs:
         | 
| 846 1169 | 
             
                - name: Ruby 3.0.1 for no_dependencies
         | 
| 847 1170 | 
             
                  env_vars:
         | 
| 1171 | 
            +
                  - *2
         | 
| 1172 | 
            +
                  - *3
         | 
| 1173 | 
            +
                  - *4
         | 
| 1174 | 
            +
                  - *5
         | 
| 848 1175 | 
             
                  - name: RUBY_VERSION
         | 
| 849 1176 | 
             
                    value: 3.0.1
         | 
| 850 1177 | 
             
                  - name: GEMSET
         | 
| @@ -864,10 +1191,20 @@ blocks: | |
| 864 1191 | 
             
              task:
         | 
| 865 1192 | 
             
                prologue:
         | 
| 866 1193 | 
             
                  commands:
         | 
| 1194 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 1195 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 1196 | 
            +
                  - "./support/install_deps"
         | 
| 1197 | 
            +
                  - bundle config set clean 'true'
         | 
| 1198 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 867 1199 | 
             
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 1200 | 
            +
                epilogue: *1
         | 
| 868 1201 | 
             
                jobs:
         | 
| 869 1202 | 
             
                - name: Ruby 3.0.1 for capistrano2
         | 
| 870 1203 | 
             
                  env_vars:
         | 
| 1204 | 
            +
                  - *2
         | 
| 1205 | 
            +
                  - *3
         | 
| 1206 | 
            +
                  - *4
         | 
| 1207 | 
            +
                  - *5
         | 
| 871 1208 | 
             
                  - name: RUBY_VERSION
         | 
| 872 1209 | 
             
                    value: 3.0.1
         | 
| 873 1210 | 
             
                  - name: GEMSET
         | 
| @@ -883,6 +1220,10 @@ blocks: | |
| 883 1220 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 884 1221 | 
             
                - name: Ruby 3.0.1 for capistrano3
         | 
| 885 1222 | 
             
                  env_vars:
         | 
| 1223 | 
            +
                  - *2
         | 
| 1224 | 
            +
                  - *3
         | 
| 1225 | 
            +
                  - *4
         | 
| 1226 | 
            +
                  - *5
         | 
| 886 1227 | 
             
                  - name: RUBY_VERSION
         | 
| 887 1228 | 
             
                    value: 3.0.1
         | 
| 888 1229 | 
             
                  - name: GEMSET
         | 
| @@ -898,6 +1239,10 @@ blocks: | |
| 898 1239 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 899 1240 | 
             
                - name: Ruby 3.0.1 for grape
         | 
| 900 1241 | 
             
                  env_vars:
         | 
| 1242 | 
            +
                  - *2
         | 
| 1243 | 
            +
                  - *3
         | 
| 1244 | 
            +
                  - *4
         | 
| 1245 | 
            +
                  - *5
         | 
| 901 1246 | 
             
                  - name: RUBY_VERSION
         | 
| 902 1247 | 
             
                    value: 3.0.1
         | 
| 903 1248 | 
             
                  - name: GEMSET
         | 
| @@ -913,6 +1258,10 @@ blocks: | |
| 913 1258 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 914 1259 | 
             
                - name: Ruby 3.0.1 for padrino
         | 
| 915 1260 | 
             
                  env_vars:
         | 
| 1261 | 
            +
                  - *2
         | 
| 1262 | 
            +
                  - *3
         | 
| 1263 | 
            +
                  - *4
         | 
| 1264 | 
            +
                  - *5
         | 
| 916 1265 | 
             
                  - name: RUBY_VERSION
         | 
| 917 1266 | 
             
                    value: 3.0.1
         | 
| 918 1267 | 
             
                  - name: GEMSET
         | 
| @@ -928,6 +1277,10 @@ blocks: | |
| 928 1277 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 929 1278 | 
             
                - name: Ruby 3.0.1 for que
         | 
| 930 1279 | 
             
                  env_vars:
         | 
| 1280 | 
            +
                  - *2
         | 
| 1281 | 
            +
                  - *3
         | 
| 1282 | 
            +
                  - *4
         | 
| 1283 | 
            +
                  - *5
         | 
| 931 1284 | 
             
                  - name: RUBY_VERSION
         | 
| 932 1285 | 
             
                    value: 3.0.1
         | 
| 933 1286 | 
             
                  - name: GEMSET
         | 
| @@ -943,6 +1296,10 @@ blocks: | |
| 943 1296 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 944 1297 | 
             
                - name: Ruby 3.0.1 for que_beta
         | 
| 945 1298 | 
             
                  env_vars:
         | 
| 1299 | 
            +
                  - *2
         | 
| 1300 | 
            +
                  - *3
         | 
| 1301 | 
            +
                  - *4
         | 
| 1302 | 
            +
                  - *5
         | 
| 946 1303 | 
             
                  - name: RUBY_VERSION
         | 
| 947 1304 | 
             
                    value: 3.0.1
         | 
| 948 1305 | 
             
                  - name: GEMSET
         | 
| @@ -958,6 +1315,10 @@ blocks: | |
| 958 1315 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 959 1316 | 
             
                - name: Ruby 3.0.1 for rails-6.0
         | 
| 960 1317 | 
             
                  env_vars:
         | 
| 1318 | 
            +
                  - *2
         | 
| 1319 | 
            +
                  - *3
         | 
| 1320 | 
            +
                  - *4
         | 
| 1321 | 
            +
                  - *5
         | 
| 961 1322 | 
             
                  - name: RUBY_VERSION
         | 
| 962 1323 | 
             
                    value: 3.0.1
         | 
| 963 1324 | 
             
                  - name: GEMSET
         | 
| @@ -973,6 +1334,10 @@ blocks: | |
| 973 1334 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 974 1335 | 
             
                - name: Ruby 3.0.1 for resque-2
         | 
| 975 1336 | 
             
                  env_vars:
         | 
| 1337 | 
            +
                  - *2
         | 
| 1338 | 
            +
                  - *3
         | 
| 1339 | 
            +
                  - *4
         | 
| 1340 | 
            +
                  - *5
         | 
| 976 1341 | 
             
                  - name: RUBY_VERSION
         | 
| 977 1342 | 
             
                    value: 3.0.1
         | 
| 978 1343 | 
             
                  - name: GEMSET
         | 
| @@ -988,6 +1353,10 @@ blocks: | |
| 988 1353 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 989 1354 | 
             
                - name: Ruby 3.0.1 for sequel
         | 
| 990 1355 | 
             
                  env_vars:
         | 
| 1356 | 
            +
                  - *2
         | 
| 1357 | 
            +
                  - *3
         | 
| 1358 | 
            +
                  - *4
         | 
| 1359 | 
            +
                  - *5
         | 
| 991 1360 | 
             
                  - name: RUBY_VERSION
         | 
| 992 1361 | 
             
                    value: 3.0.1
         | 
| 993 1362 | 
             
                  - name: GEMSET
         | 
| @@ -1003,6 +1372,10 @@ blocks: | |
| 1003 1372 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 1004 1373 | 
             
                - name: Ruby 3.0.1 for sinatra
         | 
| 1005 1374 | 
             
                  env_vars:
         | 
| 1375 | 
            +
                  - *2
         | 
| 1376 | 
            +
                  - *3
         | 
| 1377 | 
            +
                  - *4
         | 
| 1378 | 
            +
                  - *5
         | 
| 1006 1379 | 
             
                  - name: RUBY_VERSION
         | 
| 1007 1380 | 
             
                    value: 3.0.1
         | 
| 1008 1381 | 
             
                  - name: GEMSET
         | 
| @@ -1018,6 +1391,10 @@ blocks: | |
| 1018 1391 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 1019 1392 | 
             
                - name: Ruby 3.0.1 for webmachine
         | 
| 1020 1393 | 
             
                  env_vars:
         | 
| 1394 | 
            +
                  - *2
         | 
| 1395 | 
            +
                  - *3
         | 
| 1396 | 
            +
                  - *4
         | 
| 1397 | 
            +
                  - *5
         | 
| 1021 1398 | 
             
                  - name: RUBY_VERSION
         | 
| 1022 1399 | 
             
                    value: 3.0.1
         | 
| 1023 1400 | 
             
                  - name: GEMSET
         | 
| @@ -1031,18 +1408,28 @@ blocks: | |
| 1031 1408 | 
             
                  commands:
         | 
| 1032 1409 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 1033 1410 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 1034 | 
            -
            - name: Ruby jruby-9. | 
| 1411 | 
            +
            - name: Ruby jruby-9.2.19.0
         | 
| 1035 1412 | 
             
              dependencies:
         | 
| 1036 1413 | 
             
              - Validation
         | 
| 1037 1414 | 
             
              task:
         | 
| 1038 1415 | 
             
                prologue:
         | 
| 1039 1416 | 
             
                  commands:
         | 
| 1417 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 1418 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 1419 | 
            +
                  - "./support/install_deps"
         | 
| 1420 | 
            +
                  - bundle config set clean 'true'
         | 
| 1421 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 1040 1422 | 
             
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 1423 | 
            +
                epilogue: *1
         | 
| 1041 1424 | 
             
                jobs:
         | 
| 1042 | 
            -
                - name: Ruby jruby-9. | 
| 1425 | 
            +
                - name: Ruby jruby-9.2.19.0 for no_dependencies
         | 
| 1043 1426 | 
             
                  env_vars:
         | 
| 1427 | 
            +
                  - *2
         | 
| 1428 | 
            +
                  - *3
         | 
| 1429 | 
            +
                  - *4
         | 
| 1430 | 
            +
                  - *5
         | 
| 1044 1431 | 
             
                  - name: RUBY_VERSION
         | 
| 1045 | 
            -
                    value: jruby-9. | 
| 1432 | 
            +
                    value: jruby-9.2.19.0
         | 
| 1046 1433 | 
             
                  - name: GEMSET
         | 
| 1047 1434 | 
             
                    value: no_dependencies
         | 
| 1048 1435 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| @@ -1051,21 +1438,34 @@ blocks: | |
| 1051 1438 | 
             
                    value: latest
         | 
| 1052 1439 | 
             
                  - name: _BUNDLER_VERSION
         | 
| 1053 1440 | 
             
                    value: latest
         | 
| 1441 | 
            +
                  - &6
         | 
| 1442 | 
            +
                    name: _C_VERSION
         | 
| 1443 | 
            +
                    value: '8'
         | 
| 1054 1444 | 
             
                  commands:
         | 
| 1055 1445 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 1056 1446 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 1057 | 
            -
            - name: Ruby jruby-9. | 
| 1447 | 
            +
            - name: Ruby jruby-9.2.19.0 - Gems
         | 
| 1058 1448 | 
             
              dependencies:
         | 
| 1059 | 
            -
              - Ruby jruby-9. | 
| 1449 | 
            +
              - Ruby jruby-9.2.19.0
         | 
| 1060 1450 | 
             
              task:
         | 
| 1061 1451 | 
             
                prologue:
         | 
| 1062 1452 | 
             
                  commands:
         | 
| 1453 | 
            +
                  - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 1454 | 
            +
                  - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 1455 | 
            +
                  - "./support/install_deps"
         | 
| 1456 | 
            +
                  - bundle config set clean 'true'
         | 
| 1457 | 
            +
                  - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 1063 1458 | 
             
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 1459 | 
            +
                epilogue: *1
         | 
| 1064 1460 | 
             
                jobs:
         | 
| 1065 | 
            -
                - name: Ruby jruby-9. | 
| 1461 | 
            +
                - name: Ruby jruby-9.2.19.0 for rails-5.2
         | 
| 1066 1462 | 
             
                  env_vars:
         | 
| 1463 | 
            +
                  - *2
         | 
| 1464 | 
            +
                  - *3
         | 
| 1465 | 
            +
                  - *4
         | 
| 1466 | 
            +
                  - *5
         | 
| 1067 1467 | 
             
                  - name: RUBY_VERSION
         | 
| 1068 | 
            -
                    value: jruby-9. | 
| 1468 | 
            +
                    value: jruby-9.2.19.0
         | 
| 1069 1469 | 
             
                  - name: GEMSET
         | 
| 1070 1470 | 
             
                    value: rails-5.2
         | 
| 1071 1471 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| @@ -1074,6 +1474,27 @@ blocks: | |
| 1074 1474 | 
             
                    value: latest
         | 
| 1075 1475 | 
             
                  - name: _BUNDLER_VERSION
         | 
| 1076 1476 | 
             
                    value: latest
         | 
| 1477 | 
            +
                  - *6
         | 
| 1478 | 
            +
                  commands:
         | 
| 1479 | 
            +
                  - "./support/bundler_wrapper exec rake test"
         | 
| 1480 | 
            +
                  - "./support/bundler_wrapper exec rake test:failure"
         | 
| 1481 | 
            +
                - name: Ruby jruby-9.2.19.0 for rails-6.0
         | 
| 1482 | 
            +
                  env_vars:
         | 
| 1483 | 
            +
                  - *2
         | 
| 1484 | 
            +
                  - *3
         | 
| 1485 | 
            +
                  - *4
         | 
| 1486 | 
            +
                  - *5
         | 
| 1487 | 
            +
                  - name: RUBY_VERSION
         | 
| 1488 | 
            +
                    value: jruby-9.2.19.0
         | 
| 1489 | 
            +
                  - name: GEMSET
         | 
| 1490 | 
            +
                    value: rails-6.0
         | 
| 1491 | 
            +
                  - name: BUNDLE_GEMFILE
         | 
| 1492 | 
            +
                    value: gemfiles/rails-6.0.gemfile
         | 
| 1493 | 
            +
                  - name: _RUBYGEMS_VERSION
         | 
| 1494 | 
            +
                    value: latest
         | 
| 1495 | 
            +
                  - name: _BUNDLER_VERSION
         | 
| 1496 | 
            +
                    value: latest
         | 
| 1497 | 
            +
                  - *6
         | 
| 1077 1498 | 
             
                  commands:
         | 
| 1078 1499 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 1079 1500 | 
             
                  - "./support/bundler_wrapper exec rake test:failure"
         |