this post was submitted on 20 Apr 2025
153 points (95.3% liked)

Programmer Humor

22720 readers
1662 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 

cross-posted from: https://lemmy.ca/post/42598837

you are viewing a single comment's thread
view the rest of the comments

I really like Ruby’s rake. It’s an actually sane language and quick to learn. No idiosyncratic shell scripts cobbled together. The makefile is written in plain Ruby. That also makes it super powerful to adapt to your needs. Nor parsing XML. Just load your rake file into your interactive Ruby shell (I’m partial to pry), try things, test it. Our time for debugging build errors dropped to a fraction.

I have used it build C++, Objective-C, and Java projects for a medium sized company. Before that we used ant with XML build files from hell.