Learn Ruby on Rails - Full Course

Поділитися
Вставка
  • Опубліковано 2 лип 2024
  • Learn Ruby on Rails in this full course for beginners. Ruby on Rails is a is a server-side web application framework used for creating full stack web apps.
    🔗 Code: github.com/flatplanet/railsfr...
    🎥 Course created by Codemy.com. Check out their UA-cam channel: / codemycom
    ⭐️ 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
    ⭐️ Special thanks to our Champion supporters! ⭐️
    🏆 Loc Do
    🏆 Joseph C
    🏆 DeezMaster
    --
    Learn to code for free and get a developer job: www.freecodecamp.org
    Read hundreds of articles on programming: freecodecamp.org/news

КОМЕНТАРІ • 946

  • @arpitgoyalgg
    @arpitgoyalgg 3 роки тому +322

    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 роки тому +23

      @@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 Рік тому +1

      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 Рік тому +2

      @@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

  • @entendu_620
    @entendu_620 2 роки тому +13

    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

  • @anishraheja21
    @anishraheja21 2 роки тому +55

    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 4 місяці тому +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

  • @tuntany
    @tuntany Рік тому +20

    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!

  • @junwonoh3155
    @junwonoh3155 2 роки тому +49

    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

  • @nima968
    @nima968 Рік тому +5

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

  • @DollarDreamYT
    @DollarDreamYT Рік тому +19

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

  • @mattbaillie9258
    @mattbaillie9258 Рік тому +107

    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 Рік тому +25

      @@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 Рік тому +5

      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?' }

  • @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.

  • @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.

  • @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

  •  Рік тому +7

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

  • @howto1.1.1.1
    @howto1.1.1.1 3 роки тому +14

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

  • @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!

  • @cryptosecuritytools
    @cryptosecuritytools 3 роки тому +11

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

  • @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

  • @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.

  • @yako668
    @yako668 3 місяці тому +6

    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 Місяць тому

      Thank you for this!

    • @Dead_CSE
      @Dead_CSE 21 день тому

      we need to install node and yarn

  • @matvincentranido2925
    @matvincentranido2925 3 роки тому +4

    I can watch this all day without getting bored.

  • @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

  • @dilipkumar-pu1yb
    @dilipkumar-pu1yb 3 роки тому +3

    I was waiting for this one. Thankyou

  • @ThyDoctoh
    @ThyDoctoh 3 роки тому

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

  • @BIERKOFF07
    @BIERKOFF07 3 роки тому

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

  • @technplay9757
    @technplay9757 3 роки тому +3

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

  • @ninaeherrera
    @ninaeherrera 3 роки тому

    Wow great course! just finished my app! Thanks John!

  • @nirberger1
    @nirberger1 2 роки тому

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

  • @Alphabet_-_
    @Alphabet_-_ 3 роки тому +15

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

  • @HoppingTales
    @HoppingTales 2 роки тому +4

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

  • @murat6018
    @murat6018 2 роки тому +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!

  • @koushiksarkar8808
    @koushiksarkar8808 3 роки тому +1

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

  • @user-ic4ce8xb5v
    @user-ic4ce8xb5v 2 роки тому +3

    This is so useful, thank you!

  • @michaelcdarby
    @michaelcdarby 2 роки тому +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 2 роки тому

      Where do you contact him?

    • @michaelcdarby
      @michaelcdarby 2 роки тому +2

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

  • @sharearshopnil1663
    @sharearshopnil1663 3 роки тому +1

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

  • @frankmbonu5298
    @frankmbonu5298 2 роки тому

    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

  • @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!

  • @aminblm
    @aminblm 3 роки тому +3

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

  • @jrowe567
    @jrowe567 Рік тому

    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.

  • @88SJoe88
    @88SJoe88 2 роки тому

    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.

  • @AbhishekMishra-fr7po
    @AbhishekMishra-fr7po 3 роки тому +7

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

  • @blimpsgo180
    @blimpsgo180 3 роки тому +3

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

  • @AdityaRaocs
    @AdityaRaocs 3 роки тому

    just finished and deployed !!!! thankyou very much

  • @elwinjyothis5388
    @elwinjyothis5388 2 роки тому +1

    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

  • @JorgeOrtiz-qn3rw
    @JorgeOrtiz-qn3rw 2 роки тому +26

    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!

    • @user-jx5or8pk2m
      @user-jx5or8pk2m 2 роки тому +3

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

    • @JorgeOrtiz-qn3rw
      @JorgeOrtiz-qn3rw 2 роки тому

      @@user-jx5or8pk2m 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

  • @chuanqizhu1549
    @chuanqizhu1549 2 роки тому +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!

  • @ES11777
    @ES11777 Рік тому

    Excellent tutorial for beginners with Rails! Thank you

  • @raphaelmro
    @raphaelmro 2 роки тому

    Amazing Rails starter course!! Congrats! 🎉

  • @clairebayoda8325
    @clairebayoda8325 3 роки тому +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.

  • @dannyromero699
    @dannyromero699 3 роки тому +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 2 роки тому

      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

  • @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😊

  • @youmnasayed3947
    @youmnasayed3947 8 місяців тому +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 ? :(

  • @tolgaykaragoz2192
    @tolgaykaragoz2192 Рік тому +1

    Hello John,
    First of all, thank you for this excellent course.
    The migration you created in the Associations section actually just added the user_id field to the friends table and created an index on it, so actually it didn't create any foreign key or something between these two tables, so I couldn't understand why we wrote belongs_to or something inside the models.

  • @AbhishekMishra-fr7po
    @AbhishekMishra-fr7po 3 роки тому

    Thank You for the amazing content!! MY First Full Stack Web Application with Custom backend

  • @antithesis8041
    @antithesis8041 3 роки тому +4

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

  • @daniel-hc8gr
    @daniel-hc8gr 3 роки тому +5

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

  • @elnuraakysbekova467
    @elnuraakysbekova467 3 роки тому +1

    Thanks to this wonderful tutorial! it was just great!!!

  • @brianmainah
    @brianmainah 2 роки тому

    Best Rails Tutorial ever!!

  • @mistersimple7303
    @mistersimple7303 3 роки тому +3

    I love ruby on rails so bad.

  • @i_nishantjain
    @i_nishantjain 3 місяці тому +25

    Heisenberg teaching rails.

  • @shaneway007
    @shaneway007 11 місяців тому +1

    Your video and teaching is excellent thankyou. I'm relatively new to web development and this is fantastic

  • @sonysantos
    @sonysantos Рік тому

    I want to give a new like every two minutes! Great tutorial!

  • @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 2 роки тому +1

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

  • @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!

  • @anthonykim4072
    @anthonykim4072 2 роки тому

    Thanks for such a great course!

  • @mikee1of1
    @mikee1of1 2 роки тому

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

  • @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 Рік тому +1

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

    • @mattbaillie9258
      @mattbaillie9258 Рік тому +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.

  • @user-vg3iz4yp4s
    @user-vg3iz4yp4s 3 роки тому +22

    "Because python can do anything
    just badly" Micheal Reeves

  • @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.

  • @user-bc5wf2qq2r
    @user-bc5wf2qq2r 9 місяців тому +1

    This is awesome! Very helpful content. Thank You so much!

  • @MoLcZaN
    @MoLcZaN 2 роки тому

    Thank you, this video helps me much to understand basics of rails.

  • @gooffball9758
    @gooffball9758 2 роки тому +4

    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 :)

  • @tolkien7101
    @tolkien7101 3 роки тому +12

    Freecodecamp making new programmers life easy.

  • @skytechbits
    @skytechbits 5 місяців тому +1

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

  • @laurabartel7240
    @laurabartel7240 3 роки тому +2

    This is a well put together tutorial and was exactly what I was looking for.

  • @ian5024
    @ian5024 3 роки тому +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 Рік тому

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

  • @R3lentlessSec
    @R3lentlessSec Рік тому +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 Рік тому

      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 ?

  • @victormartins3988
    @victormartins3988 2 роки тому

    Thank you! Really great video and very helpful

  • @hussainhanswalterfinckh1429
    @hussainhanswalterfinckh1429 2 роки тому

    You are great trainer & bring it very funny & honest

  • @andrewmcburney4425
    @andrewmcburney4425 2 роки тому +3

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

  • @lupuscanis4370
    @lupuscanis4370 2 роки тому +3

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

  • @araceliiglesias1184
    @araceliiglesias1184 2 роки тому

    amazing teacher, amazing language

  • @GunamaniJena
    @GunamaniJena 3 роки тому

    It is the best tutorial and hands on on Ruby on Rails Dear Mosh you are like Kohinoor diamond hats up

  • @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.

  • @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.

  • @dilanramanayaka9404
    @dilanramanayaka9404 2 роки тому

    Thank you very much. Learned so much.

  • @falzar712
    @falzar712 3 роки тому

    thank you so much i really needed this

  • @OckhamsChainsaw1337
    @OckhamsChainsaw1337 2 роки тому +3

    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 роки тому +4

      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!

  • @hex.70
    @hex.70 Рік тому +3

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

    • @Chupavac1
      @Chupavac1 Рік тому +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

  • @ceviroho8682
    @ceviroho8682 8 місяців тому +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.

  • @MuhammadUmair001
    @MuhammadUmair001 2 роки тому

    great video for ruby on rails beginners, Thank You

  • @asmitapatel189
    @asmitapatel189 3 роки тому +3

    Hie.. railsinstaller.org is not working on my laptop

  • @phoxercom
    @phoxercom 3 роки тому +5

    is railsinstaller.org down? it doesn't load :/

    • @emberavenge7162
      @emberavenge7162 3 роки тому +1

      Its down, but, 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.

  • @annioutoybou7174
    @annioutoybou7174 3 роки тому

    Great video ! This is a amazing 🔥🔥🔥

  • @Psymon1471
    @Psymon1471 2 роки тому

    Great video!! Good as a quick refresher course for me.

  • @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 ?

  • @automatusqa
    @automatusqa 3 роки тому +3

    Hello, first of all, thank you for this course! Really easy to understand!
    I'm facing and issue and don't know yet how to solve it:
    I've decided to keep a dropdown menu component in my _header. But I've realized it only work on the first interaction: After clicking on one of the dropdown item, I cannot interact with it anymore, (only after refreshing the page). It seems like it's freezing somehow
    Any clue? That's the only thing I've changed (comparing to the rest of the course)

  • @ilonakhomenko3797
    @ilonakhomenko3797 3 роки тому

    Thank you so much for the video!

  • @funnelclix489
    @funnelclix489 3 роки тому +1

    Excellent tutorial, I have been looking at moving from PHP and this has convinced me. Thank you.

  • @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.

  • @bataragirsang
    @bataragirsang 3 роки тому +8

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

  • @h.thongtu8872
    @h.thongtu8872 2 роки тому

    great tutorial