I spent over 10 years writing and working on (and debugging... many hours of debugging) Ruby code.
Towards the end I started to write all my Ruby code, as much as possible, as so-called PORO objects (Plain Ol' Ruby Objects). These feature zero inheritance, and are initialized with all the state they need to do their work. I started doing this because I found that writing code that way produced more easily testable, more maintainable, more stable code.
Then I realized that functional languages basically all already forced you to do those things, by not holding state anywhere, forcing you to pass it around.
These were all logical steps (with the end goal optimization of "useless work elimination"). There was no faddiness involved, other than having "a good feeling" about working with Elixir (over, say, Clojure, Haskell or the other options out there).