Moncef Belyamani
Moncef Belyamani
Look closely. In programming, when you're asking if something equals something, it has to equal that thing exactly. You are looking for "primary", which a String, but what is being...
Alternatively, you can add the `first` filter: `{% assign separated_url_first_element = page.url | slugify | split:"-" | slice: 0 | first %}` in which case comparing to `"primary"` will now...
Final comment: This behavior comes from the Liquid templating language, which is separate from the Jekyll project. In other words, you would see this same issue in other non-Jekyll projects...
@ashmaroli I just rebased and updated my PR. Please take a look. Also, since we are updating the minimum Ruby version to 3.1, should we also update the CI workflows...
I am seeing this too starting with Apple's command line tools version 15.3. If I revert to CLT 15.1, I am able to compile my binaries with ruby-packer. I'd be...
Thank you both for the details. Coincidentally, I had recently come across tebako, but if I'm understanding the README correctly, their "forward portable" philosophy is a huge limitation for me....
Good news! I downloaded Ruby 3.2.5 and put it in my local ruby-packer repo, and it worked with Xcode 15.4! Here's roughly what I did: - Download the Ruby 3.2.5...
Ha! I spoke too soon. It looks like the `rubyc` executable that got generated is ruby itself. When I run `rubyc -v`, it shows 3.2.5, and `rubyc -h` shows the...
Success! I figured out the compilation error with the current repo. Looking more closely at the error, it was complaining that the `access` method on lines 643 and 650 of...
I was [helping someone](https://github.com/jekyll/jekyll/issues/9622) with an issue with `slice`, and it turns out that they were calling `slice: 0` on an Array, and they were comparing the result to the...