I made a lot of money off of Rails but finally switched to Clojure because of the gem pain.
So many gems are C or system wrappers and require very specific versions of Ruby and whatever underlying libraries are called. That's fine on brand new dev projects, but it leads to a lot of unexpected web searches when it's time to ship code or return to a project you haven't touched in 6 months.
Pinning your gems helps with some of this but every time it popped up I thought ugh...here we go again. Eventually that pain made me look for a better way.
One of the oft-undersold features of Clojure is the culture is more careful with breaking changes.
I'm unconvinced that suboptimal versions of Haskell such as mtl with it's n+1 instances or very strict interpretations of simple Haskell have the ability to meaningfully move the popularity needle of Haskell forward.
With that view it makes since to highlight either "Haskell v2", my ideal flavor of Haskell without reservation, or some mix of the two.
There's a time I wouldn't have mentioned effectul for exactly the reasons you allude to, but... I suppose I along with reasons cited, I no longer care that much in a way.
the reasoning is about correctness and program behavior
Haskell is still the only mainstream language that truly delivers on "understand the part without needing to consider the whole." Others can with work and discipline. With Haskell, you usually have to work hard to get in that level of quagmire (and I've seen and fixed plenty of quagmires. I've seen people complain about code too and just be wrong when I got my hands dirty for like an afternoon.)
> I mean this sounds like a lot of buzzwords, which is usually the answer I get when I ask why I should use Haskell.
That's what makes it a hard sell I guess?
> What would it do to make my life easier?
It gives those advantages which I'll explain more in a moment everywhere, meaning you can depend on those things in your and others code.
Similar to how it's difficult to explain why it's insanely useful that emacs is plain text everywhere.
Now let's see if I can demonstrate how just one of these could make your life easier... Local reasoning.
A good definition:
> Local reasoning is a property of some code wherein the correctness of the code can be inferred locally under specified assumptions, without considering prior application state or all possible inputs.
Give me a second to think up a good example. Have a desired language or code example in mind that doesn't use local reasoning?
Most of the code I write needs to take in a chunk of floating point data a few thousand points long, do a lot of maths on it, and emit it back out again, as quickly as possible, over and over.