Rails 8 Secret: Built in Authentication in Seconds!

Поделиться
HTML-код
  • Опубликовано: 14 янв 2025
  • ХоббиХобби

Комментарии • 5

  • @brettfraley5496
    @brettfraley5496 Месяц назад

    Thank you Kaleb. I haven't touched Ruby or Rails for over 10 years. With the new release, I am blown away! I found your content and I think you're in a great position to gain a huge audience with your videos.
    After trying about 5 different blog posts and videos for adding registration, I found out that the authentication-zero gem now works with rails generate authentication and includes routing and logic for sign up, as well as the features authentication-zero already have. It saved me so much time in getting started, as the basic auth generator doesn't include a lot of crucial functionality.
    Steps:
    1. gem install authentication-zero
    2. Within a project: bundle add authentication-zero
    3. Then run: rails generate authentication
    Keep up the great work, and I look forward to what your doing with Rails Quest!

    • @railsquest
      @railsquest  Месяц назад

      Thanks Brett! You nailed it. Thanks for sharing the steps here!

  • @imagineabout4153
    @imagineabout4153 2 месяца назад +2

    I discovered Ruby on Rails 6 hours ago and I've been able EXTREMELY EASILY to put online working a fucking MONSTER. Stuff like this has required me weeks/month work-length efforts, how is this not the standard?!?!

  • @MidSeasonGroup
    @MidSeasonGroup 3 месяца назад

    Great video. Could you demo adding new users from the UI? (Registrations)

    • @railsquest
      @railsquest  3 месяца назад +1

      Good idea! Registration is not built into rails yet, but this would be a good opportunity to demonstrate a gem that I recommend called authentication-zero by Lazaro Nixon. The rails template you may have seen me use on projects on this channel includes this by default.