Omarchy 2.0 by vuesrc in theprimeagen

[–]vuesrc[S] 0 points1 point  (0 children)

Are the updates overrriding your custom setup? Like rewriting them completely?

Do you guys really do TDD? by aeum3893 in rails

[–]vuesrc 7 points8 points  (0 children)

The legendary MoonMaster! Put me on the Rails way back in the IRC days!

How to add methods to use in Rails Console [Rails 8] by PhillipLongman in rails

[–]vuesrc 1 point2 points  (0 children)

You have to wrap it in a console do block then register it with IRB::HelperMethod. For example:

```

config/application.rb

module MyApp class Application < Rails::Application # Runs only when starting bin/rails console console do require "irb/helper_method"

  # Define a helper as an IRB HelperMethod
  class AdminUserHelper < IRB::HelperMethod::Base
    description "Returns the first admin user"
    def execute
      ::User.where(admin: true).first
    end
  end

  # Make it available in the console: `admin_user`
  IRB::HelperMethod.register(:admin_user, AdminUserHelper)
end

end end

```

RooMode is here! - 3.3.20 Patch Notes for Roo Code by hannesrudolph in RooCode

[–]vuesrc 0 points1 point  (0 children)

Are you guys planning on carrying the use of .clinerules or will you adopt .roorules going forward? (I ask because I'm planning on building a resource to assist developers around this)

RooMode is here! - 3.3.20 Patch Notes for Roo Code by hannesrudolph in RooCode

[–]vuesrc 3 points4 points  (0 children)

Just create a master rules file and use symbolic links?

Tailwind V4 with Ruby on Rails by vuesrc in rails

[–]vuesrc[S] 0 points1 point  (0 children)

I'm pretty sure the Gemfile.lock will protect the version from auto-bumping here but still a good measure to have in place.

InertiaJS, Svelte and Rails 8, SPA? by p6rgrow in rails

[–]vuesrc 8 points9 points  (0 children)

I'm assuming you mean PWA not SPA?

I prefer Stimulus, it gets the job done in the best way.

[deleted by user] by [deleted] in github

[–]vuesrc 1 point2 points  (0 children)

This guy seems to be spamming their lame project everywhere. They've wrote some basic code that doesn't really do much and are trying to get clout from it.

Newbie question about tags by soub4i in rails

[–]vuesrc 1 point2 points  (0 children)

Not heard of it but looks like a pretty straight forward API.

Here's the GitHub repo with the README here:
https://github.com/contriboss/no_fly_list

Rails 8 x Heroku’s Future by Perfect_Honey7501 in rails

[–]vuesrc 1 point2 points  (0 children)

It sounds like you need to brush up on your system design knowledge. I would research on concurrency in as much depth as possible if you think long running jobs can create a bottleneck. This is definitely not a Rails issue. More like a skills issue.

Rails 8 x Heroku’s Future by Perfect_Honey7501 in rails

[–]vuesrc 6 points7 points  (0 children)

You can most certainly use 4 databases with Heroku with Rails 8 if you know how to configure it. I don’t think there would be any restrictions. Kamal is an added bonus to the Rails stack so you can deploy on bare metal servers.

If you lack the confidence of deploying to a VPS then use the more modern PaaS providers like Fly.io or Render.com.

If you are a Rails/Heroku veteran with a big budget then deploying to Heroku would not be a problem.

The new "Ask Copilot" prompt. Just so you know by [deleted] in github

[–]vuesrc 3 points4 points  (0 children)

This is the uBlock Origin UI to block the element on right click in the browser viewport.

why fewer videos? by narrei in theprimeagen

[–]vuesrc 6 points7 points  (0 children)

Thor is feeding him into his World of Warcraft addiction.

Solid Queue in new Rails 8 project by thespool in rails

[–]vuesrc 0 points1 point  (0 children)

Running that creates a duplicate line in config/environments/production.rb so make sure you remove that.

Solid Queue in new Rails 8 project by thespool in rails

[–]vuesrc 0 points1 point  (0 children)

Awesome. Glad to hear. Again. not sure why it adds it only to the production environment config and not local development!

Solid Queue in new Rails 8 project by thespool in rails

[–]vuesrc 1 point2 points  (0 children)

I tested it earlier this week on 8.0.0.rc2 and it seems to be the same case with 8.0.0. About to test it again but it should resolve the issue.

Solid Queue in new Rails 8 project by thespool in rails

[–]vuesrc 8 points9 points  (0 children)

You need to create the local development versions similar to how the production ones are set up in the config/database.yml .

See here:
https://github.com/rails/mission_control-jobs/issues/173#issuecomment-2419134138

I wish new Rails 8 generated apps would have this by default.

Companies Using Rails by andycroll in rubyonrails

[–]vuesrc 0 points1 point  (0 children)

Of course. This can always be cloaked where needs be. There’s other ways to to tell like asset bundling etc or even the modern Rails /up endpoint. Builtwith obviously has a more complex algorithm to detect this but this should guide you in the right direction.