Learn Ruby on Rails - Full Course

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

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

  • @tuntany
    @tuntany Год назад +26

    This is a good one! I started my Rails journey 3 months ago and tried to follow along 4 different tutorials and got lost during the process. I stumbled upon this and finished it within 2 days alongside my regular mundane work and was not distracted. It is worth giving it a try. I have enjoyed it very much. Thank you!

  • @anishraheja21
    @anishraheja21 2 года назад +64

    So I was here when this video had a less than hundred views and I was learning rails. Hands down, best tutorials I could find when I needed guidance and help in understanding rails. John Elder helped in the way I never thought someone could help other person.
    And appreciating him is the least I could do.
    For someone just starting out with rails, this tutorial is the best kick-start to the journey. And be persistent, it's gonna come to you :)

    • @Mike-Ward-Traveler
      @Mike-Ward-Traveler Год назад +1

      I completely agree with you Anish. John Elder is an incredible teacher. I'm new to rails too. I came across him about a week ago and picked up 4 of his courses in a Udemy sale a couple of days later. They are project based with fast facts coming at you in an easy to understand way.

    • @ezziwa
      @ezziwa Год назад

      Mr.Anish hope u are ok today ,would you recommend me learning rails today in 2023 .Am asking because finding a job is most important after learning .Please advise.Kind regards.

    • @anishraheja21
      @anishraheja21 9 месяцев назад +1

      @@ezziwa Sorry for the late reply. And to answer your question, yes I'd totally learn rails today as well. I am working on rails at presently and there are plenty of jobs out there. Good luck to you

  • @arpitgoyalgg
    @arpitgoyalgg 4 года назад +341

    So FCC actually provided us a tutorial by someone with 2 best sellers on ruby. Incredible!

    • @hiddenaether
      @hiddenaether 2 года назад +4

      lmao, 2 "best sellers" is subjective and hardly an achievement for anyone well versed in Ruby.

    • @bluebukkitdev8069
      @bluebukkitdev8069 2 года назад +26

      @@hiddenaether Sure, except only a small percentage of people ever even write a book, so I'd say it's an achievement for anybody.

    • @mark98115
      @mark98115 2 года назад +2

      Not nesvessarily. I remember looking for a book on C++ and kept finding books with errors in them. It was a long time ago, so I only remember one of them, but there were a few that almost every book made. The one that stuck in my mind is that almost all the authors kept referring to "data structures" as "data".
      It may seem like something insignificant to many but there is a difference.
      It got to the point where In would scan the book quickly to check for those errors and discarded it when I found,them.
      I did find a book whose author did not make those errors and bought it.

    • @dominick253
      @dominick253 Год назад +3

      @@hiddenaether haters gonna hate 🤣😂🤣☝️

    • @orphen1011
      @orphen1011 Год назад

      Omg this joke is funny 😂 no one would actually get the FCC also means Federal Communications Commission that handles all of this 😂and is also this group of free coding camp. No lie this was genius

  • @yako668
    @yako668 8 месяцев назад +16

    For y'all having a prob in the signout page, at 1:57:00 the "method: :delete" doesnt work. It needs to be "data: {turbo_method: :delete}" because rails-ujs got removed. Make sure to install turbo before by following these steps:
    1-Add the turbo-rails gem to your Gemfile: gem 'turbo-rails'
    2-Run ./bin/bundle install.
    3-Run ./bin/rails turbo:install.

    • @calorrrrful
      @calorrrrful 6 месяцев назад

      Thank you for this!

    • @braackets
      @braackets 5 месяцев назад

      we need to install node and yarn

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

      thanks for the trick!

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

      "Cara, vc é foda!": Pau, Pica.

    • @AasthaSoni-v3z
      @AasthaSoni-v3z Месяц назад

      Not working :(
      error- No route matches [GET] "/users/sign_out"

  • @entendu_620
    @entendu_620 2 года назад +14

    thanks for going over this in such a way that feels as if youre actually explaining to someone who is learning and not someone who has 10 + years developing and is taking a refresher

  • @junwonoh3155
    @junwonoh3155 2 года назад +50

    For those having trouble with tzinfo-data:
    1. gem uninstall tzinfo-data
    2. In the Gemfile, replace 'gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]' to just gem "tzinfo-data"
    3. bundle install

    • @carloscastro-ig8vq
      @carloscastro-ig8vq 2 года назад

      thank you so much!!

    • @fathimafareeda3150
      @fathimafareeda3150 2 года назад +2

      Where do I find the gemfile?(step2)

    • @christianchapoco5472
      @christianchapoco5472 2 года назад

      thanks buddy

    • @Aspecky
      @Aspecky 2 года назад +4

      @@Bootskum1 You are correct, the `Gemfile` is inside the directory that has been made using the `rails new` command, open the `Gemfile` using a text edior (I used notepad++) and then replace gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ] with gem "tzinfo-data"

    • @saisinghparihar6640
      @saisinghparihar6640 2 года назад

      thanks, was lost

  • @DollarDreamYT
    @DollarDreamYT Год назад +24

    For those having issues with the sign_out (destroy_user_session_path) do the following:
    change "method: :delete" to "data: { turbo_method: :delete }"

  • @djdisconap
    @djdisconap 2 года назад +113

    Overall this was a good tutorial. I was expecting more detailed explanations as to what exactly we are coding but it is more project-based where you code along. Also, as the video gets older it is important to note that there will be a number of issues you will run into.
    1) There is about an hour spent on styling using Bootstrap. The version used is outdated and some parts are deprecated so you will need to make adjustments.
    2) The Rails autogenerated pages for the Friends section is quite different than what is shown on the video
    3) There is not much explanation as to what is going on in when Rails autogenerates stuff so that we can somehow troubleshoot any errors we may be having.
    4) Ive ran into issues with destroying a friend, Sign in error. There are a few more other users have mentioned so check the comments to see what adjustments you may need.

    • @kevinren3753
      @kevinren3753 Год назад +5

      its free content bro, reading docs that align with your version and googling goes a long way in troubleshooting

    • @maxcohen13
      @maxcohen13 Год назад +28

      @@kevinren3753 Relax. He's only pointing out the issues with a two-year old programming tutorial, which is quite important to new users.

    • @maxcohen13
      @maxcohen13 Год назад +6

      Thanks for this. I know lengthy videos like this are usually judged by the name instead of the actual content, so it's good we get an idea of what to look for.

    • @kevinren3753
      @kevinren3753 Год назад +1

      ​@@maxcohen13 lol im just saying, read the docs, tutorial videos are almost never enough on their own, best of luck.

    • @rizalsalasi4273
      @rizalsalasi4273 Год назад +4

      use this instead if you use link_to data: { turbo_method: :delete, turbo_confirm: 'Are you sure?' }

  • @varmapurushotham
    @varmapurushotham 3 года назад +38

    Best ROR tutorial for beginners! Believe me this is the first time I've felt like commenting for a tutorial video. This tutorial covers all aspects right from scratch to deployment. Something every beginner wants to learn. 'John Elder' does the best job here. Thumbs Up, Wayyy to go...Cheers man :D

  • @justaguyza
    @justaguyza Год назад +2

    As someone who's been cursed with errors and other headaches related to coding, the sigh of relief I breathed when everything worked during the introduction was GREAT. Thanks for this tutorial, your channel is extremely helpful.

  • @michaelcdarby
    @michaelcdarby 3 года назад +4

    I’m speechless. This is one of the best tutorials I’ve ever watched. Anytime I start having a question you literally answer it seconds later. I will continue to reference this video as I work more with rails

    • @herbertsantos141
      @herbertsantos141 3 года назад

      Where do you contact him?

    • @michaelcdarby
      @michaelcdarby 3 года назад +2

      @@herbertsantos141 I meant in the video he ends up answering my questions like seconds later

  • @skytechbits
    @skytechbits 10 месяцев назад +1

    To those who complain about outdated vesions or systems, just make adjustments. The information is still valuable to learn and understand.

  • @mikegardel
    @mikegardel 3 года назад +56

    This is one of the best tutorials I have ever followed since I started studying rails. I have to say that you explain it very well and every instruction that I have followed has worked perfectly. Thank you very much and please continue sharing knowledge like this.
    thank you very much and Happy New Year 2021.

    • @almokgalaka999
      @almokgalaka999 3 года назад

      Great teacher/lecturer yes, but for other languages, you have to find other lecturers like Kylie Ying for Python. Mike Dane is good for C++, although he offered both C++ and Python, I rate him well, almost 100% for C++ but not for Python [a point from Multivariate Models - be able to remove irrelevant features and then validate or rank non-redundant features]. Ka Modimo.

    • @almokgalaka999
      @almokgalaka999 3 года назад

      In a Multivariate Model we aim to - remove irrelevant features and then validate or rank non-redundant features, thereby reaching/achieving Learning Accuracy with better performance. Division of ML - a consistent or the best feature selection. Ka Modimo.

  • @elwinjyothis5388
    @elwinjyothis5388 2 года назад +2

    John my man, you made are a great teacher. You made Django easy for me when it was too much for me, now I say this thumbnail with 4 hours timestamp and just randomly hovered and again saw John teaching stuff, no second thoughts clicked it and started thank you soo much dudeeee

    • @shakt77
      @shakt77 2 года назад

      I like python but i gave up on django

  • @gnarly3327
    @gnarly3327 2 года назад +3

    First time on rails great tutorial! One thing to add for future reference, when we add the bootstrap class to the Edit and Back on the friends view, do it like this :class => "btn btn-primary".
    The one on the video broke for me on Rails 7.0.3, ruby 3.1.2p20

  • @ceviroho8682
    @ceviroho8682 Год назад +1

    I flabbergasted. I built a database system once and I can't belive I never used ruby on rails before.
    it's fascinating how much faster using this than making it from scratch.

  • @DaniloMaccari
    @DaniloMaccari 3 года назад +3

    buummm said the peeled! Yes now! Thank you very much John. I finish the CRUD and Login with Ruby on Rails course and post on Heroku too. Thanks a lot!

  • @jrowe567
    @jrowe567 2 года назад

    I loved the intro to this lamenting that the hardest part about Ruby on Rails is installing it. Totally my experience. Took me two days to figure out all the installation.

  • @nima968
    @nima968 2 года назад +5

    A really brief video to get familiar with Rails. I appreciate it. Keep up the excellent work.

  • @frankmbonu5298
    @frankmbonu5298 3 года назад

    the best course ever, i am a beginner but I can say I can now build a CRUD app will start testing my skill on building a difficult website

  • @connorhughes7278
    @connorhughes7278 2 года назад

    i bought a full corse in this and this YT video you posted for free is leaps and bounds more descriptive, you explained everything in way that makes one feel not so overwhelmed. Thank you Sir

  • @matvincentranido2925
    @matvincentranido2925 3 года назад +4

    I can watch this all day without getting bored.

  • @Riyaq268
    @Riyaq268 Год назад +1

    Iam microverse student now here it's my first time watched full tutorial with break or leaving half way ❤❤I liked tutorial and I know some version are updated and some outdated I will fix that but all I want to say is thank you John for making my journey rails easier😊

  • @ashokc.4217
    @ashokc.4217 Год назад +6

    This has been an incredible teaching; was damn easy to learn and implement parallelly. Thank you John for helping me in my ROR journey.

  • @Alphabet_-_
    @Alphabet_-_ 4 года назад +15

    John Elder is the best Ruby on Rails teacher (youtuber)of the days in my humble opinion

  • @cryptosecuritytools
    @cryptosecuritytools 3 года назад +11

    Just finished and deployed the app. Love it, definitely highly recommended. Will check out your other courses. Thanks :)

  • @wasanaclements5835
    @wasanaclements5835 2 года назад +3

    This course is amazing!!!! I went through the entire course, made some mistakes so I had to back track and fix some stuff but it wasn't unreasonable. The amount of things this framework brings is JAW DROPPING. Very easy to understand. Thank you for demystifying Rails for me!

  • @chuanqizhu1549
    @chuanqizhu1549 3 года назад +4

    After I have been learning Rails on my own for three weeks, this video tutorial just solved many questions in my mind so easily. I will recommend this to everyone who wants to improve their skills in Ruby on Rails. Many thanks to the creators of this video. Great job!

  • @diskritis2076
    @diskritis2076 4 месяца назад +1

    47:39 if you are seeing an error page, try changing the word 'about' as it is already a keyword in newer versions of rails. I used 'abot' and it worked

  • @AtLocalhost
    @AtLocalhost 4 года назад +14

    I was waiting for this video from this channel, finally❤

  • @dzienisz
    @dzienisz 7 месяцев назад +1

    I used Ruby 3.2.2 and Rails 7.1.3 for this, and although I did not find many differences, I still think this is a great tutorial.

    • @luisa302000
      @luisa302000 7 месяцев назад

      I have an issue, when clicking delete in my friends list, it redirects me to the show page, can you help me with that? ty, i dont want it to redirect

    • @braackets
      @braackets 5 месяцев назад

      we need to install node and yarn

  • @JorgeOrtiz-qn3rw
    @JorgeOrtiz-qn3rw 2 года назад +27

    Good course but, there are some mistakes that I had following these instructionns.
    You see, I'm using Rails 7 so it was different from Rails 6, so these are the changes:
    I used this sintx in order to SIGN OUT
    I had to change the submit buttons (sessions and registrations) functionality to:

    Greetings!

    • @이수연-p1f9n
      @이수연-p1f9n 2 года назад +3

      I kept googling for this for hours and you saved me. Thanks!

    • @JorgeOrtiz-qn3rw
      @JorgeOrtiz-qn3rw 2 года назад

      @@이수연-p1f9n No problem! I know, there isn't much information about it. If you have another problem, maybe I could help you.

    • @dean55
      @dean55 2 года назад +2

      Thanks, this was causing some real frustrations!

    • @Povai
      @Povai 2 года назад

      @@JorgeOrtiz-qn3rw Do you have discord?

    • @ScoseByte
      @ScoseByte 2 года назад +2

      You're the best man

  •  2 года назад +7

    Awesome content! Thanks for the 4 hours of pure wisdom and very well planned teaching

  • @ter753
    @ter753 2 года назад +11

    UPDATES 2022:
    - If you can't install gems into ruby, try doing it directly though the CMD terminal, Git Bash sometimes have problems recognizing environments and can bug really easy specially on Windows 10.
    - If you are having problems with the delete button / method, try changing it to button_to and the rest of the code is almost the same as shown in the video.
    - I couldn't make the delete confirmation pop-up works, if you made it work please leave on the comments how you did it.
    - For those having trouble with the white background on the video: Turn On the Night Light (also known as Blue Filter) in windows 10.
    To do this, just go to your desktop, right click on it and click on "Display Settings" and turn the night light on.
    If it doesn't work, hit in "Night light settings" and then on: "Turn on now".
    This makes the white background much more tolerable.
    I finished the course and this is my review about it:
    Good course, but spends a lot of time off the goal.
    There's actually less than 2.3hs talking about Ruby / RoR and most of the talk is about Bootstrap or styling or git / github / heroku. So there's no point on calling these a full course about Rails.
    But anyway, maybe the course is aimed for people who never programmed before, have no idea about it and just want to get their hands dirty.
    I don't recommend it because there isn't too much explanation about the code and is just a "copy this and paste it here, believe me it works." and that's it.
    No technical explanations or teaches what the documentation actually means. Coding is not magic or a Cook Recipe...

    • @VictorSoares9
      @VictorSoares9 2 года назад

      Could you make this ( @friend = current_user.friends.build ) work ?

  • @BrenoAlmeida
    @BrenoAlmeida Год назад

    Finally I could make rails works using this installation method. If you follow carefully each step you will not have any problem with rails.
    July - 2023 (Rails 7.0.6) Ruby (3.2.2)

  • @aminblm
    @aminblm 4 года назад +3

    God blesses internet and how fast you can download knowledge to your brain with videos!

  • @LuisAlvarado-le8qn
    @LuisAlvarado-le8qn 2 года назад

    This video needs to be part of the global encyclopedia for humankind's important knowledge

  • @Moonwalkerrabhi
    @Moonwalkerrabhi 3 года назад +7

    I would appreciate a tutorial with React + Rails too from this guy

  • @murat6018
    @murat6018 3 года назад +2

    About to finish the first 1 hour and I think this is the best, easiest to understand rails tutorial I've found so far. Thank you very much for putting this content online!

  • @dannyromero699
    @dannyromero699 4 года назад +15

    Great course!! Really enjoyed refreshing my rails skills with this fun project 🤗! Also curious if anyone else switched from .erb to haml? 🤔

    • @almokgalaka999
      @almokgalaka999 3 года назад

      No, the oppose will be True, erb for Now!

    • @mzuwt
      @mzuwt 3 года назад

      Hi, when I try to run the server after creating a home/index page i get the following error. I wonder if you can help me.
      Error: Cannot find module './templates.js'
      Require stack:
      - C:
      ailsfriends\friends
      ode_modules\chalk\index.js
      - C:
      ailsfriends\friends
      ode_modules\webpack-assets-manifest\src\helpers.js
      - C:
      ailsfriends\friends
      ode_modules\webpack-assets-manifest\src\WebpackAssetsManifest.js
      - C:
      ailsfriends\friends
      ode_modules\@rails\webpacker\package\environments\base.js
      - C:
      ailsfriends\friends
      ode_modules\@rails\webpacker\package\index.js
      - C:
      ailsfriends\friends\config\webpack\environment.js
      - C:
      ailsfriends\friends\config\webpack\development.js
      - C:
      ailsfriends\friends
      ode_modules\webpack-cli\bin\utils\convert-argv.js
      - C:
      ailsfriends\friends
      ode_modules\webpack-cli\bin\cli.js
      - C:
      ailsfriends\friends
      ode_modules\webpack\bin\webpack.js
      at Function.Module._resolveFilename (internal/modules/cjs/loader.js:880:15)
      at Function.Module._load (internal/modules/cjs/loader.js:725:27)
      at Module.require (internal/modules/cjs/loader.js:952:19)
      at require (C:
      ailsfriends\friends
      ode_modules\v8-compile-cache\v8-compile-cache.js:15

  • @dhirajchakma3081
    @dhirajchakma3081 Год назад

    Indeed, the installation of Ruby on Rails was previously the most challenging thing for me. After changing my laptop, I was forced to abandon the platform due to my inability to reinstall it, despite following the provided instructions. However, I experienced a yahoo moment today; I used ChatGPT-4 for the installation process. And the seemingly daunting task was completed in a mere ten minutes.

  • @i_nishantjain
    @i_nishantjain 8 месяцев назад +52

    Heisenberg teaching rails.

  • @ThyDoctoh
    @ThyDoctoh 4 года назад

    Dude...I just started getting ready for a bootcamp....ty....You're a hero.

  • @technplay9757
    @technplay9757 3 года назад +3

    This has to be one of the best Rails videos. Thank you for this content!

  • @namikazi25
    @namikazi25 4 года назад +1

    I am indebted to this channel. This channel is our saviour.

  • @HoppingTales
    @HoppingTales 3 года назад +4

    One of the best lectures I have seen. Successfully implemented and deployed.

  • @hussainhanswalterfinckh1429
    @hussainhanswalterfinckh1429 3 года назад

    you remember me at my TCP/IP-Trainer at DITEC MCSE WIN NT 4.0 in Donaueschingen in 1998, he gave us perfect knowledge, I still benefit from, go ahead like this

  • @daniel-hc8gr
    @daniel-hc8gr 4 года назад +5

    YESSS!!!!!!!!!!!!!!!! RUBY COMEBACK LETS GOOOOOOOOOOOOOOOOOOOOOOOO

  • @Kheldc
    @Kheldc 2 года назад

    It's year 2022 and this is the best ROR tutorial video PERIOD!

  • @VloggerVish
    @VloggerVish 3 года назад +5

    Throughout my coding journey kept sayin CRUD as Create Read Update Delete, and first time I have heard it's D for Destroy.

    • @almokgalaka999
      @almokgalaka999 3 года назад

      No Resourceful friend, It is mostly scaffolds all the times with them, then decided to just Destroy them all [CRUD]. Many students like that function, no Resourceful Database.

  • @elddr2
    @elddr2 2 года назад +5

    In Rails 7 If you are having problems signing out:
    1- Add this line to your devise.rd file: config.navigational_formats = ['*/*', :html, :turbo_stream]
    2- In the devise.rb file change the sign out route to get: config.sign_out_via = :get
    file location: config > initializers > devise.rb

  • @riittap9121
    @riittap9121 7 месяцев назад +1

    I started to follow this out of a whim. Installation on ubuntu went ok, also connecting the database. But that's where I parted ways with the video, as I had installed the latest Ruby and Rails and this video being three years old. I was able to follow the video for 1h 15mins, which must have taken me some 3 hours with installation and pausing. It took me quite a few hours to be able to render the table and get the links working. But it was that painful debugging where I actually learned something. It was interesting to see how easy it was to create the project and attach it to database. But to be able to do something interesting, I think I need to learn the basics of Rails first.

  • @miguelfernandes657
    @miguelfernandes657 3 года назад +8

    Incredibly good course to get started with Rails, learned a lot in 4 hours!

    • @oracusdata1923
      @oracusdata1923 3 года назад +5

      While some dudes told me that ruby is gonna die..... I think ruby have over 10 years left at least.

    • @aliadmal7475
      @aliadmal7475 3 года назад +1

      bro did u also got through the whole installation process and got error on localhost:3000? please help me out if u can

  • @bluebukkitdev8069
    @bluebukkitdev8069 2 года назад

    I still got the install to work in July 2022. It was a pain and I had to do a workaround or two, but it wasn't bad.
    Long story short, after everything was installed, I created the project, which failed. Then I used ruby update --system, then I went into the project and used bundle update. Then I re-created the project to overwrite it, and it worked.

  • @gooffball9758
    @gooffball9758 2 года назад +5

    Had a issue with "gem install rails" in git bash. It failed over and over again even after updates. I fixed the issue by trying the same command in cmd, and then try it again in gitbash, and now it working perfect.

    • @lobster3496
      @lobster3496 2 года назад +1

      THANK YOU. I was having this same issue and this fixed it...after HOURS of troubleshooting...

    • @gooffball9758
      @gooffball9758 2 года назад

      @@lobster3496 No problems :)

  • @88SJoe88
    @88SJoe88 3 года назад

    Salutes, mr John Elder! You again! Thanks for the help with Tkinter in my database systems specialization! Thanks to your help and PAGE, I managed to make a GUI to access a Postgres DB.

  • @blimpsgo180
    @blimpsgo180 3 года назад +3

    You are an energetic and gifted teacher. Keep up the great work.

  • @rohansamavedam3182
    @rohansamavedam3182 2 года назад

    For what it's worth, installing RVM was the easiest way for me to setup ruby on rails stack!

  • @n0handles
    @n0handles 3 года назад +4

    I just wanted to mention that I'm on linux and luckily my installation came with nodejs and ruby pre-installed. So a lot of the beginning stuff was already done for me. Yay me!

  • @juanmolina2828
    @juanmolina2828 Год назад

    As he said, the most complex stuff is to install ruby ..it was a pain for me. ..
    i saw a lot of videos because a problem just apears behind another..
    no just because the installin, but the pc or windows configuraron.. many questions on foros and to ia later i cod install it .
    then someone recomend me this full course and at this time it is Wonderfull!!
    thank you John Edler!

  • @youmnasayed3947
    @youmnasayed3947 Год назад +3

    I have a problem with the DELETE method, it dosn't work for me (destroy link and sign out) they don't work eventhough i did the same thing you did in the video . also when I log in, the page only do the refresh thing and do not log me in. anybody Know why ? :(

  •  2 года назад +1

    update in 2022, you can install ruby on rails in a no brainer mode:
    - install wsl
    - install vs code
    - use dev container
    That's it, work for me without any error.
    To be honest, I hate ruby on rails, I just attend this course to migrate an existing ruby on rails system to nodejs.

  • @AidenSalts
    @AidenSalts 4 года назад +22

    "Because python can do anything
    just badly" Micheal Reeves

  • @AlejandroAguilarSierra
    @AlejandroAguilarSierra 2 года назад +1

    Ruby on Rails is for serious servers, not for secretaries or game users under windoz. Most serious servers use a variant of Unix.

  • @dilipkumar-pu1yb
    @dilipkumar-pu1yb 4 года назад +3

    I was waiting for this one. Thankyou

  • @Deanin
    @Deanin 3 года назад +2

    "Ruby is a very easy programming language" You've obviously never seen me waste time while making a tutorial before! 😂Great video though! Gonna pass this along.

  • @clairebayoda8325
    @clairebayoda8325 4 года назад +5

    Ruby, my first love! ♥️

    • @douglascrowder
      @douglascrowder 3 года назад +3

      Mine too. I continually try other newer "hip" languages, but Ruby always pulls me back in.

  • @rodrigo3187
    @rodrigo3187 2 года назад +4

    For anyone having trouble with the Sign up process on Rails 7, go to config/initializers/devise.rb and add this line
    config.navigational_formats = ['*/*', :html, :turbo_stream] , then migrate and restart the server. And for those getting an error signing out replace the link_to line with this:

    • @MrOregonCurtis
      @MrOregonCurtis 2 года назад +1

      Thank you, this helped with the error I was getting on sign up!

    • @djdisconap
      @djdisconap 2 года назад +1

      You are a legend! Thank you so much. I was about to just quit this tutorial until I found your comment on the Sign up issue.

  • @clerivaldojunior4465
    @clerivaldojunior4465 3 года назад

    First time that i hear someone saying 'D' on CRUD as 'Destroy'. Such dramatic, i love it

  • @mistersimple7303
    @mistersimple7303 4 года назад +3

    I love ruby on rails so bad.

  • @drfurqan6239
    @drfurqan6239 Год назад

    27:27 a well versed summary of the steps involved till these 27 mins

  • @Relentless-546
    @Relentless-546 2 года назад +4

    Maybe next time have a full screen of the code so we can see the entire written code. I followed this step by step and when it gets to thw style with bootstrap portion. Something with tbe current version of ROR makes it to where the index.html.erb friends file is incomplete. It just shows a div and not a table and thead

    • @juliensimiand
      @juliensimiand 2 года назад

      Same here, is there a specific step to take so we get the index.html.erb to have the a table & thead and not just a div ?

  • @lorenaodino1024
    @lorenaodino1024 Год назад +1

    OMG 🤭!!!! I had a horrible time trying to install Ruby on Windows! I had to give up and tried Linux and it was way easier, but still had some minor issues. So, I feel so related to minute 3.8 🤣

  • @ian5024
    @ian5024 4 года назад +6

    For anybody who had the same issue as me where :delete functionality isn't working (3:20:00) try button_to instead of link_to

    • @prathap_ravi
      @prathap_ravi 2 года назад

      Thanks a lot bro... I was about to give up on solving this problem🙏🙏

  • @tenniswithtrev5079
    @tenniswithtrev5079 3 года назад +1

    Bro the amount of work it would normally take to do this with the MERN stack is so much more. Astronomical. You have to
    manually set up all the boiler plate and server code
    individually write all the api endpoints for each operation(CRUD)
    In the client, create the "list all contacts", "new contact", and "edit contact" pages
    You can add the destroy button to the edit or list all
    But we know just a button in HTML does nothing, so you also have to connect these forms and pages to the express routes(API endpoints)
    ALL THAT took installing rails(on linux not too bad), and then running a few commands...

  • @默-c1r
    @默-c1r 2 года назад +3

    This is so useful, thank you!

  • @BIERKOFF07
    @BIERKOFF07 3 года назад

    One of the best tutorials that I have followed. Thanks Jhon

  • @antithesis8041
    @antithesis8041 4 года назад +4

    Really appreciate your content.
    Please make a tutorial of Rust programming language.

  • @diemofskulls6383
    @diemofskulls6383 4 месяца назад +10

    For those who get the Error: No route matches [GET] "/users/sign_out" at 1:57:00, you need to add this in the routes.rb file:
    devise_scope :user do
    get '/users/sign_out' => 'devise/sessions#destroy'
    end

  • @psfgtech
    @psfgtech Год назад

    I'm a genius now, 1 class every morning for free, can't beat this. Learn something yaw

  • @hex.70
    @hex.70 2 года назад +3

    I came here to learn rails, but now I want to learn django

    • @Chupavac1
      @Chupavac1 2 года назад +1

      ngl with the amount of praise the video gets even in recent comments, I expected something a lot more comprehensive, not to mention how the version differences made it ten times harder than it needed to be

  • @koushiksarkar8808
    @koushiksarkar8808 4 года назад +1

    You guys are amazing and born to be teaching.......

  • @OckhamsChainsaw1337
    @OckhamsChainsaw1337 2 года назад +4

    In the CRUD scaffold step, it does not create a table in the index.html.erb. Is this due to a newer version of Rails? How do I get it to create a table automatically?

    • @levilyon7088
      @levilyon7088 2 года назад +5

      I had the same issue, I had to go to 1:26:30 on the video and basically pause several times quickly to get the right formatting. I'll post it below for ease, but this is just a workaround since it's not creating the same way by default. Also, you'll need to delete the '_friend.html.erb' file in the same directory, as that is how it is formatting the data instead of using a table like the video shows. Once I deleted that file and made the changes listed below, I was able to see the same page as him. Pretty frustrating, but frustration comes with this type of thing unfortunately.
      The following code between the dashed lines is what he has at 1:26:57
      -------------------------------------------------------------------------

      First Name
      Last Nameth>
      Email
      Phone
      Twitter








      ---------------------------------------------------------
      Hopefully you weren't stuck too long, if you were though I hope this helps!

    • @OckhamsChainsaw1337
      @OckhamsChainsaw1337 2 года назад

      @@levilyon7088 Oh wow, thank you so much! I usually work in Python, so I didn't have the background in Ruby (or just Rails in general) to google this correctly.

    • @nimbledeer2747
      @nimbledeer2747 2 года назад +1

      @@levilyon7088 I'm now getting an error when trying to create a new friend saying 'Missing partial friends/_friend with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}.'

    • @nimbledeer2747
      @nimbledeer2747 2 года назад +1

      never mind keeping the '_friend.html.erb' and not deleting fixed this error for me

    • @levilyon7088
      @levilyon7088 2 года назад +1

      It seemed to work for me at the time, glad you were able to figure it out!

  • @ankitacharya7520
    @ankitacharya7520 3 года назад

    I came here thinking I've got rails installed. Fast forward 2 hrs., I'm here again, finally I can start watching the video.

  • @andrewmcburney4425
    @andrewmcburney4425 2 года назад +3

    How is this free!? Incredible tutorial, and a great teacher!

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

    Thank you very much sir i just created my first ruby on rails project under your guidance ...... a big thank you sir🤝🤝

  • @shizzle97
    @shizzle97 3 года назад +3

    For anyone who enjoyed working with Ruby or Ruby on Rails over the past year, please let your voice be heard in the 2021 Stack Overflow Developer Survey.

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

    ⭐️ Course Contents ⭐️
    ⌨️ (0:00:00​) Introduction and Installation
    ⌨️ (0:28:12​) First Webpage and MVC Overview
    ⌨️ (0:42:41​) Application Partial Links and New Pages
    ⌨️ (1:03:17​) CRUD Scaffold
    ⌨️ (1:21:33​) Style App with Bootstrap
    ⌨️ (2:02:15​) Style Devise Views
    ⌨️ (2:26:39​) Associations
    ⌨️ (2:45:41​) More Associations
    ⌨️ (3:06:34​) Style Modifications
    ⌨️ (3:21:57​) Fun With the Controller
    ⌨️ (3:30:17​) Git, GitHub, and Heroku

  • @tolkien7101
    @tolkien7101 4 года назад +12

    Freecodecamp making new programmers life easy.

  • @ayushsharma19
    @ayushsharma19 3 года назад

    I just came across your video it's kinda cool and very much similar to laravel and yep it's much much easier to install with any distro of Linux ( I used snap as package manager for Linux )
    Just two simple command
    1. sudo snap install ruby --classic
    2. sudo apt install rails
    And it's done 😅
    ( I had node BTW 🤣)

  • @bataragirsang
    @bataragirsang 4 года назад +8

    the only good and bad things about ruby on rails is:
    TO MUCH MAGIC

  • @patrickfeeney4180
    @patrickfeeney4180 Год назад

    Thanks. For anyone just coming here, there are many things that are outdated and wont just work.

  • @F4Alts
    @F4Alts 4 года назад +3

    Im not even going to lie i made money from this :)

    • @JohnBala
      @JohnBala 3 года назад

      how?

    • @freddyr0
      @freddyr0 3 года назад +1

      @@JohnBala Someone paid him

    • @JohnBala
      @JohnBala 3 года назад

      @@freddyr0 Phew... i thought he was a robber

  • @MajesticDMH
    @MajesticDMH 2 года назад +1

    I've got halfway thru the course and I like your way of teaching. You keep it light and easy. To bad the code you use is outdated and are full of errors now. It will teach you bugfixing 😂

    • @procoder7099
      @procoder7099 2 года назад

      Really? Where are you learning rails from?

    • @muhidinsaid8563
      @muhidinsaid8563 2 года назад

      @@procoder7099 i jus got an error , when creating a new project

  • @georgemeng7836
    @georgemeng7836 2 года назад +5

    Great video, thanks!
    Just would point out that from 1:42:46 - 1:57:30, the part to get Devise working, I followed the video and got an error, took me some time to find out the issue, there is one step missing to create the controllers. Run this command and everything will be just working.
    rails generate devise:controllers users
    This will generate the controllers requires for the views.

    • @divijjain4674
      @divijjain4674 2 года назад

      hey i'm not able to get this running. pls help. Everything works and doesnt serve any error. But on the local host i'm unable to sign up. Terminal says transaction rolled back.

    • @georgemeng7836
      @georgemeng7836 2 года назад

      @@divijjain4674 , if you post code to github, might be much easier for others to check the code the code as of now.

    • @divijjain4674
      @divijjain4674 2 года назад

      hey man, could you please look at the code. Any help is appreciated. github.com/jaindivij21/friends-list

    • @Bigdog33R
      @Bigdog33R 2 года назад +1

      Thanks so much for this. I've been stuck on this part for days with "undefined method `user_url' for # ". I tried what you suggested but it still isn't working for me. Maybe I added something inadvertently when trying to fix it myself. I may have to just start from the beginning again. So frustrating to get everything right up to this point - then problems.

    • @georgemeng7836
      @georgemeng7836 2 года назад

      @@Bigdog33R , if you could upload code to github, I could take a look at to see what is the problem. The video was built on Rails 6, if you are using rails 7, might be slightly different.

  • @renzobeltran
    @renzobeltran 4 года назад +2

    the best channel that i've ever met, i needed information about rails and kaboom, there is!! thank you very very very much, and also im learning english, greetings from Peru, this channel should receive all the awards in this area for everything you do

  • @lupuscanis4370
    @lupuscanis4370 3 года назад +3

    Rails would be a lot more popular to use if it weren't for the windows issues.

  • @nirberger1
    @nirberger1 3 года назад

    Thank you very much, it was a pleasure to learn with you. Boom !!! :)

  • @stephencano2737
    @stephencano2737 3 года назад +3

    good day sir. it seems that the railsinstaller.org is not anymore available.. is there other links?

    • @emberavenge7162
      @emberavenge7162 3 года назад +1

      It is down, alternatively you can install ruby, then in git bash run, gem install bundler, and then run, gem install rails, and it should work for you, after that you can skip the instalation steps but you still have to generate the project file.

  • @AdityaRaocs
    @AdityaRaocs 3 года назад

    just finished and deployed !!!! thankyou very much