Nate Matykiewicz

Results 146 comments of Nate Matykiewicz

@skipkayhil Ahh, that makes sense. But nowadays there's no real expectation that it's numeric, so the `method_missing` can do a deprecation cycle and eventually get removed. Nice!

I've had trouble using Rubocop rule gems (basically a gem of a rubocop.yml file) before because of differing versions, so adding the version in the header makes a ton of...

I think one thing that would be good is adding a section to the README that gives an example of how you'd use this in Rails. How do you go...

Or is the assumption that you'd still render a .html.erb file, and pieces of that would render a Phlex component (similar to how ViewComponent works)? Your vision seems to be...

Well that seems simple enough, and would work nicely `respond_to` as well: ```ruby class ArticlesController < ApplicationController def index articles = Article.all.load_async respond_to do |format| format.json { render json: articles...

I didn't realize that you could use those ANSI color names and it would follow the terminal theme. Thank you for that @sbibauw! @msva To your point, yeah it would...

I'm probably going to restate everything in this thread. But I figured another example might be helpful. I was just working on a fresh Rails app. I generated a new...

I see https://github.com/wix/import-cost/issues/23 was closed saying it's out of scope, so I'll close this.

In talking with Shopify on the Rails Discord about something different, I learned that they don't use actual foreign keys in the database because they do online schema migrations with...

@paulodeon The problem isn't that the cop exists, the problem is that the error message is not helpful. > Do not add a NOT NULL column without a default value....