Berkan Ünal

Results 12 comments of Berkan Ünal

Is there any updates on this? Any help needed?

I've created a formula for my personal use. Feel free to install it from there https://github.com/brkn/homebrew-brew As of the time of writing; it points to the latest commit on master...

Rails have `ignore_tables` to solve this issue I think. A similar solution can be implemented maybe. [0] https://stackoverflow.com/questions/40882420/rails-postgis-error-cannot-drop-table-spatial-ref-sys

I had to add 3rd gsub to handle `psych` deprecation warnings ```rb # At spec/support/deprecation_toolkit.rb # frozen_string_literal: true require 'deprecation_toolkit' require 'deprecation_toolkit/rspec' # Monkeypatch the DeprecationToolkit # This will remove...

Hi @fatkodima, I totally get where you're coming from, in most cases I'd agree. But what if we are introducing rubocop into a legacy codebase? Wouldn't this nudge the author...

Last working version archived: https://web.archive.org/web/20201008171201/http://sass-compatibility.github.io/

Any chance of reviving this RFC? When test order is randomized, record behaviour shuffles the same fixture file's entries unnecessarily. Shuffling the tests also can cause the offending line number...

What's the _**known**_ minimum compatible version of ember-cli?

Relying on system's `pg_dump` for the `DB::Utils::Postgres#exec_dump_command` is also prone to failure. My local `pg_dump` version is 14, but [docker-compose](https://github.com/hanami/hanami-cli/blob/main/docker-compose.yml) specifies the latest, which should be v18. As noted in...

Can we exec pg_dump inisde the test db container? Dump command could check if the env is test and the postgres uri matches the docker compose? I know it's a...