isomorfeus-iodine 0.7.46 → 0.7.49

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c337af508230df51518a03d1e31cb89be788bebaafdedb46de6bc4e2b3f947b6
4
- data.tar.gz: b481e007b094e90548e14f285f9ecfa52483fc362e8a5b9d59e22e91ef0dc28e
3
+ metadata.gz: 1d738c4e12837e4701e07b9a23b5339ec81f9bca7576432394405ac425fedb9d
4
+ data.tar.gz: 34051db83348db0ad3fd5bcf92fa4efda7f662afabf322b74f66896dc850d0c5
5
5
  SHA512:
6
- metadata.gz: 7ca3e7fcd9f6fb4061b631187917a5d936a995a357ca6b3dfd6b41a46c16e11d159353b043f621e4a5599ea4021871dc66b0d20a264c91cb30bdfdd40d2c5fe5
7
- data.tar.gz: 2e3e14177ba93b473e5827c00ed1512a2c5b743e06f15c6cb11d4eb1817767cc264265715a75c1bad648533cc7e1532fc95badec1dd34bdbdd400c5a01306395
6
+ metadata.gz: b0a04ba4c6ccdcd506866b575240a62e625285118d200fc54171b120d19df27a7f974b9bce6f3168f589a689276766b336c4935e5fe07d81595e4b2b74f2132f
7
+ data.tar.gz: 65b915942797680025c0441dbd46205a330254ab18bb8d4a3ca161889ac88b74b6d02ca3867d558f7b2665772ee0846a41edc46d019b7d7648b8c560c2d6ef08
@@ -21,7 +21,7 @@ A clear and concise description of what the bug is.
21
21
  ### Rack App to Reproduce
22
22
 
23
23
  ```ruby
24
- APP = {|env| [200, {}, "Hello World"] }
24
+ APP = proc {|env| [200, {}, ["Hello World"]] }
25
25
  run APP
26
26
  ```
27
27
 
@@ -9,6 +9,7 @@ on:
9
9
  jobs:
10
10
  specs:
11
11
  strategy:
12
+ fail-fast: false
12
13
  matrix:
13
14
  os: [ubuntu-latest, macos-latest, windows-latest]
14
15
  runs-on: ${{ matrix.os }}
data/.gitlab-ci.yml ADDED
@@ -0,0 +1,8 @@
1
+ image: ruby:3.1
2
+
3
+ before_script:
4
+ - bundle install -j $(nproc)
5
+
6
+ specs:
7
+ script:
8
+ - bundle exec rake