←back to thread

333 points steveklabnik | 1 comments | | HN request time: 0.201s | source
Show context
dismalaf ◴[] No.45035147[source]
Has anyone ever actually had anything break from a Ruby version update? I know Matz basically never does breaking changes, last I remember is the 1.8.7 -> 1.9.2 update...

I've only ever just straight up downloaded the source and installed it myself, never had any issues with Ruby updates...

replies(2): >>45035260 #>>45035757 #
oezi ◴[] No.45035757[source]
They moved quite some things out of the standard library so you need require/gems for some things which used to be batteries included.

Also small changes like File.exists? being deprecated and then removed.

replies(1): >>45040909 #
1. dismalaf ◴[] No.45040909[source]
Yeah, and for some of these changes they gave you warnings for like a year straight in preparation.