isomorfeus-iodine 0.7.48 → 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: 5b1237f665549395076af86532ffc564f4cef05add3014a5e9818cd674497602
4
- data.tar.gz: e9e27c61cc6caa7ec67a56006681d7fe19850a88adcbcf4a14a4941dd8c3dd50
3
+ metadata.gz: 1d738c4e12837e4701e07b9a23b5339ec81f9bca7576432394405ac425fedb9d
4
+ data.tar.gz: 34051db83348db0ad3fd5bcf92fa4efda7f662afabf322b74f66896dc850d0c5
5
5
  SHA512:
6
- metadata.gz: 5296052972dc777a0bf1bb1d900d1fc2f94a2ce2c5667543fd1331cd915c883ac36ca4fc1dd584845a96ce80ec5e77604577851bc7289b4b4a01497c6235fade
7
- data.tar.gz: 27a99318353419d531fd07538f63d6ce1fae88fc6cc55a23fb87950f861511cc257cea71edd7d8bdd06c184c7142f34a3d644b52931c6f1eb4cea2d7f7753a06
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