Patrik Ragnarsson

Results 301 comments of Patrik Ragnarsson

@weppos I hope this help (I'm in a hurry now, so I haven't checked this too closely) ``` ruby $ LANG= LANGUAGE= LC_ALL= LC_CTYPE= irb irb(main):001:0> require 'public_suffix' ; list_data...

This was with 2.0.3: ``` ruby irb(main):010:0> PublicSuffix::List::DEFAULT_LIST_PATH => "/Users/dentarg/.gem/ruby/2.2.5/gems/public_suffix-2.0.3/lib/public_suffix/../../data/list.txt" ```

Hmm... maybe I was naive to believe that everything would be good by `File.read` with `encoding: Encoding::UTF_8` just because it doesn't raise any exception. Seems like `"网络.cn\n"` is read as...

Looks like LANG=C.UTF-8 is enough, the Docker images for Ruby >= 2.5 sets that ``` $ docker run --rm ruby:2.4-slim-buster env PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin HOSTNAME=2ea0e1a03e36 RUBY_MAJOR=2.4 RUBY_VERSION=2.4.10 RUBY_DOWNLOAD_SHA256=d5668ed11544db034f70aec37d11e157538d639ed0d0a968e2f587191fc530df RUBYGEMS_VERSION=3.0.3 GEM_HOME=/usr/local/bundle BUNDLE_SILENCE_ROOT_WARNING=1 BUNDLE_APP_CONFIG=/usr/local/bundle...

I think some tests are a bit flaky? And GitHub Actions seems a bit unstable too, jobs not starting 😞

Just dropping the link to v2: https://github.com/influxdata/influxdb-client-ruby

I've published my own version of `rack-ssl-enforcer` to RubyGems.org under the name [`spinels-rack-ssl-enforcer`](https://rubygems.org/gems/spinels-rack-ssl-enforcer) with this patch applied. The repo is at https://github.com/spinels/rack-ssl-enforcer.

> * Don't remove in 3.0, remove in 3.1 = don't follow semver, +1 experience for users who start on 3.0 = clear picture of deprecations, bad experience for someone...

@jpwilliams RabbitMQ is now starting for me, for example here: https://github.com/dentarg/actions-test/commit/ac7b4ed6aae34a1682166fbc8e03871ac80577d3/checks#step:2:128

@jpwilliams The changes did two things: The difference between the `rabbitmq:management` and `rabbitmq:latest` images, is that the former includes the [management plugin](https://www.rabbitmq.com/management.html) installed and enabled by default. (That's documented on...