Table-flip of the day: I want to maintain a small website, just a couple of static pages and a form. I ask a friend what would be best, he goes "Jekyll" and looking at it, it looks like a reasonable solution. Alright, let's install it. Requires: Ruby 2.2.5 and RubyGems. Well, foo, Mac OS X Sierra only has 2.0.0. I guess I'll go and install a newer version. How to install Ruby: Either use a third-party tool or compile from sources. Not wanting to dive too deeply into more installations, I try compiling. Works pretty well (I do like configure.in), except it cannot compile the gdbm and openssl extensions. This makes the tests fail. So what's with OpenSSL? Turns out Mac has OpenSSL 0.9.8 but Ruby wants at least 1.0. How do I fix this? All the threads I see about it talk about using RVM, so let's give that a change. How to install RVM: \curl -sSL https://get.rvm.io | bash -s stable ARE YOU FRIGGING INSANE? You want me to just download and execute something that mi...