Nathaniel Watts

Results 43 comments of Nathaniel Watts

I'm having a similar issue :+1:

Sorry, I mistyped - our callback url is indeed set at `http://localhost:9292/auth/github/callback` in the github app settings.

Could it be dependent on the referral URL? It's something on GitHub's end - redirect_uri_mismatch. The error is coming directly from GitHub, before it even hits the app. Could it...

Hey @RezaZR - your call to `= render "footer"` is just calling a regular Rails partial. This operates the same, regardless of what templating solution you use (erb, slim, haml,...

@RezaZR also - something to note, passing in `class: w-100` doesn't work for rendering partials the same way that it does for methods like `link_to`. If you wanted to be...

I originally thought it was specific to my PR for Tailwind.css support #841, but it's [failed on other builds as well](https://travis-ci.org/github/slim-template/slim/jobs/665117979#L647) - this example being with jruby.

It passed on master (🙌), but still failed when I updated my branch. If it weren’t failing for the same reason, I would say it’s my additions, but I’m just...

@alec-c4 I have a PR open to add tailwind support here: #841

Hey @JonPugsley - I just tried that same command into my console, and the results were what you mentioned expecting: ```ruby Montrose.every(:week, interval: 2).on(["sunday", "monday"]).between(("2021-05-02".to_time)..("2021-05-22".to_time)).events.to_a ``` ![image](https://user-images.githubusercontent.com/1141717/130107559-3a851920-4c81-482a-8057-1e935b5eca3b.jpeg) Are you using...

Something to note here: In each case, I'm allowing someone to pass in an Array (for `Schedule`) or Hash (for `Recurrence`). I started writing specific spec cases for this, but...