Rails scaffold deepdive

Sdílet
Vložit
  • čas přidán 8. 08. 2021
  • Learn all about what you get when generating a scaffold with Ruby on Rails. This covers many Rails conventions that follow the happy path and are often sensible defaults.
    #rails #rubyonrails
  • Jak na to + styl

Komentáře • 21

  • @jordanfox3782
    @jordanfox3782 Před 4 měsíci

    Awesomevideo thanks for making this.

  • @shihabunshakib5740
    @shihabunshakib5740 Před 2 lety +4

    I don't know you have a yt channel. Love you stripe videos. Thank you so much.

  • @gekphoenix6844
    @gekphoenix6844 Před 2 lety

    I like this channel and this man, thx for all!

  • @siyaram2855
    @siyaram2855 Před rokem +2

    I’m not sure how to put it, but I’ve just started RoR and I’m having a pleasant feeling, a sense of happiness. Now I understand why it’s referred to as “programmer happiness.”
    I’m taking the RoR course from Pragmatic studio.
    I want to delve deeply into RoR.
    I understand that courses cannot turn you into an expert, but they can point you in the right direction. This is important.
    Are there some courses/resources that speak from their experiences, enlighten the viewer/reader, and sprinkle wisdom here and there?
    What courses should I take after this one to supplement it?
    Waiting for your reply

  • @eignnx_1738
    @eignnx_1738 Před 2 lety

    That was really helpful, thank you 🙏🏼

  • @thetutorialdoctor
    @thetutorialdoctor Před 2 lety

    Great video

  • @xav_624
    @xav_624 Před 2 lety +3

    You've become my go-to channel for Rails man! I mean you and GoRails xD

    • @cjav_dev
      @cjav_dev  Před 2 lety

      Thanks for watching, Xav_!

  • @jman9729
    @jman9729 Před 2 lety +3

    Would really really love to see a series where you build out a React Rails app!

  • @burrchanburr
    @burrchanburr Před 2 lety

    sinfully underrated channel

  • @moloiteboho
    @moloiteboho Před rokem

    Thank you I have a learnt a lot

  • @abderrahimfizazi3664
    @abderrahimfizazi3664 Před rokem

    thank u man

  • @samuelodonnell2399
    @samuelodonnell2399 Před 2 lety +1

    What does the -T do in your rails new -T? Also love your content chief, 10 / 10 super helpful mate :)

    • @cjav_dev
      @cjav_dev  Před 2 lety +1

      Skips adding unit tests by default. I prefer to use rspec and set it up manually.

  • @siyaram2855
    @siyaram2855 Před rokem

    Waiting for your reply. 🙏🙏

    • @cjav_dev
      @cjav_dev  Před rokem

      There are a ton of videos on this channel, but I'm also putting together a course for rails beginners.

    • @siyaram2855
      @siyaram2855 Před rokem

      @@cjav_dev That is so nice.
      Also put things that will help the beginners to advance fast.
      Things that he might take years to learn by himself.

  • @bradchellingworth5973

    Sorry but you can't do a tutorial and say "raisl new blog -T" and not explain what -T means. It just tells me that the rest of the tutorial is not in fact a deep dive. You skipped over the first thing!!

  • @JUNGELMAN2012
    @JUNGELMAN2012 Před rokem

    man you talk fast...pls slow down

  • @rrjack12345
    @rrjack12345 Před 2 lety +3

    Tips for a better view on routes.
    rails routes -c CONTROLLER -E
    This command outputs just the routes associated with the CONTROLLER you chose and the -E makes it so that the routes are displayed in a nice table format. MUCH easier to read.

    • @cjav_dev
      @cjav_dev  Před 2 lety

      Ooh nice! Thanks for sharing