Тёмный

Learn Ruby on Rails - Full Course 

freeCodeCamp.org
Подписаться 10 млн
Просмотров 832 тыс.
50% 1

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 RU-vid 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

Опубликовано:

 

29 июл 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 950   
@arpitgoyalgg
@arpitgoyalgg 3 года назад
So FCC actually provided us a tutorial by someone with 2 best sellers on ruby. Incredible!
@hiddenaether
@hiddenaether 2 года назад
lmao, 2 "best sellers" is subjective and hardly an achievement for anyone well versed in Ruby.
@bluebukkitdev8069
@bluebukkitdev8069 2 года назад
@@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 Год назад
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 Год назад
@@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
@junwonoh3155
@junwonoh3155 2 года назад
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 года назад
Where do I find the gemfile?(step2)
@christianchapoco5472
@christianchapoco5472 2 года назад
thanks buddy
@Aspecky
@Aspecky 2 года назад
@@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 Год назад
For those having issues with the sign_out (destroy_user_session_path) do the following: change "method: :delete" to "data: { turbo_method: :delete }"
@jayknows9596
@jayknows9596 Год назад
i was searching and searching for a solution, thank you!
@DollarDreamYT
@DollarDreamYT Год назад
@@jayknows9596 no problem. I know the feeling haha.
@gauravsharma4994
@gauravsharma4994 Год назад
You saved me🙏
@thegreatberenger
@thegreatberenger 4 месяца назад
thank you, mate! God blessssss
@MagicMicah85
@MagicMicah85 3 месяца назад
Thanks!
@anishraheja21
@anishraheja21 2 года назад
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 Год назад
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 5 месяцев назад
@@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 Год назад
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!
@entendu_620
@entendu_620 2 года назад
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
@yako668
@yako668 4 месяца назад
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 2 месяца назад
Thank you for this!
@Dead_CSE
@Dead_CSE Месяц назад
we need to install node and yarn
@nima968
@nima968 2 года назад
A really brief video to get familiar with Rails. I appreciate it. Keep up the excellent work.
@mattbaillie9258
@mattbaillie9258 Год назад
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 Год назад
its free content bro, reading docs that align with your version and googling goes a long way in troubleshooting
@maxcohen13
@maxcohen13 Год назад
@@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 Год назад
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 Год назад
​@@maxcohen13 lol im just saying, read the docs, tutorial videos are almost never enough on their own, best of luck.
@rizalsalasi4273
@rizalsalasi4273 Год назад
use this instead if you use link_to data: { turbo_method: :delete, turbo_confirm: 'Are you sure?' }
@justaguyza
@justaguyza Год назад
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
@varmapurushotham
@varmapurushotham 3 года назад
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
@thenoorcrownofficial
@thenoorcrownofficial 2 года назад
Couldn't agree more with every word ❤️
@ashokc.4217
@ashokc.4217 Год назад
This has been an incredible teaching; was damn easy to learn and implement parallelly. Thank you John for helping me in my ROR journey.
@DaniloMaccari
@DaniloMaccari 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 года назад
Just finished and deployed the app. Love it, definitely highly recommended. Will check out your other courses. Thanks :)
Год назад
Awesome content! Thanks for the 4 hours of pure wisdom and very well planned teaching
@mikegardel
@mikegardel 3 года назад
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.
@howto1.1.1.1
@howto1.1.1.1 3 года назад
I was waiting for this video from this channel, finally❤
@Alphabet_-_
@Alphabet_-_ 3 года назад
John Elder is the best Ruby on Rails teacher (youtuber)of the days in my humble opinion
@Codemycom
@Codemycom 3 года назад
Wow Thanks!
@michaelcdarby
@michaelcdarby 2 года назад
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 года назад
@@herbertsantos141 I meant in the video he ends up answering my questions like seconds later
@rodrigo3187
@rodrigo3187 2 года назад
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 Год назад
Thank you, this helped with the error I was getting on sign up!
@mattbaillie9258
@mattbaillie9258 Год назад
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.
@diskritis2076
@diskritis2076 21 день назад
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
@youmnasayed3947
@youmnasayed3947 9 месяцев назад
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 ? :(
@i_nishantjain
@i_nishantjain 4 месяца назад
Heisenberg teaching rails.
@UnrealCatDev
@UnrealCatDev Месяц назад
Fr
@marcanthonydelapena2239
@marcanthonydelapena2239 27 дней назад
we got heisenberg teaching rails before gta 6
@murat6018
@murat6018 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!
@elwinjyothis5388
@elwinjyothis5388 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
@matvincentranido2925
@matvincentranido2925 3 года назад
I can watch this all day without getting bored.
@gnarly3327
@gnarly3327 2 года назад
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
@skytechbits
@skytechbits 6 месяцев назад
To those who complain about outdated vesions or systems, just make adjustments. The information is still valuable to learn and understand.
@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.
@wasanaclements5835
@wasanaclements5835 2 года назад
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!
@technplay9757
@technplay9757 3 года назад
This has to be one of the best Rails videos. Thank you for this content!
@ThyDoctoh
@ThyDoctoh 3 года назад
Dude...I just started getting ready for a bootcamp....ty....You're a hero.
@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
@JorgeOrtiz-qn3rw
@JorgeOrtiz-qn3rw 2 года назад
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 года назад
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 года назад
Thanks, this was causing some real frustrations!
@Povai
@Povai 2 года назад
@@JorgeOrtiz-qn3rw Do you have discord?
@ScoseByte
@ScoseByte 2 года назад
You're the best man
@HoppingTales
@HoppingTales 2 года назад
One of the best lectures I have seen. Successfully implemented and deployed.
@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.
@ceviroho8682
@ceviroho8682 9 месяцев назад
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.
@chuanqizhu1549
@chuanqizhu1549 3 года назад
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!
@AbhishekMishra-fr7po
@AbhishekMishra-fr7po 3 года назад
I would appreciate a tutorial with React + Rails too from this guy
@ninaeherrera
@ninaeherrera 3 года назад
Wow great course! just finished my app! Thanks John!
@Riyaq268
@Riyaq268 Год назад
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😊
@dilipkumar-pu1yb
@dilipkumar-pu1yb 3 года назад
I was waiting for this one. Thankyou
@aminblm
@aminblm 3 года назад
God blesses internet and how fast you can download knowledge to your brain with videos!
@BIERKOFF07
@BIERKOFF07 3 года назад
One of the best tutorials that I have followed. Thanks Jhon
@tolgaykaragoz2192
@tolgaykaragoz2192 Год назад
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.
@user-ic4ce8xb5v
@user-ic4ce8xb5v 2 года назад
This is so useful, thank you!
@diemofskulls6383
@diemofskulls6383 8 дней назад
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
@sharearshopnil1663
@sharearshopnil1663 3 года назад
I am indebted to this channel. This channel is our saviour.
@nirberger1
@nirberger1 3 года назад
Thank you very much, it was a pleasure to learn with you. Boom !!! :)
@blimpsgo180
@blimpsgo180 3 года назад
You are an energetic and gifted teacher. Keep up the great work.
@daniel-hc8gr
@daniel-hc8gr 3 года назад
YESSS!!!!!!!!!!!!!!!! RUBY COMEBACK LETS GOOOOOOOOOOOOOOOOOOOOOOOO
@JohnnieWalkerGreen
@JohnnieWalkerGreen 3 года назад
Yes, I am still using Jekyll.
@AbhishekMishra-fr7po
@AbhishekMishra-fr7po 3 года назад
Thank You for the amazing content!! MY First Full Stack Web Application with Custom backend
@dannyromero699
@dannyromero699 3 года назад
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
@clairebayoda8325
@clairebayoda8325 3 года назад
Ruby, my first love! ♥️
@douglascrowder
@douglascrowder 3 года назад
Mine too. I continually try other newer "hip" languages, but Ruby always pulls me back in.
@mitochondria1of1
@mitochondria1of1 2 года назад
It's year 2022 and this is the best ROR tutorial video PERIOD!
@laurabartel7240
@laurabartel7240 3 года назад
This is a well put together tutorial and was exactly what I was looking for.
@antithesis8041
@antithesis8041 3 года назад
Really appreciate your content. Please make a tutorial of Rust programming language.
@n0handles
@n0handles 3 года назад
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!
@hussainhanswalterfinckh1429
@hussainhanswalterfinckh1429 2 года назад
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
@koushiksarkar8808
@koushiksarkar8808 3 года назад
You guys are amazing and born to be teaching.......
@mistersimple7303
@mistersimple7303 3 года назад
I love ruby on rails so bad.
@miguelfernandes657
@miguelfernandes657 3 года назад
Incredibly good course to get started with Rails, learned a lot in 4 hours!
@oracusdata1923
@oracusdata1923 3 года назад
While some dudes told me that ruby is gonna die..... I think ruby have over 10 years left at least.
@aliadmal7475
@aliadmal7475 3 года назад
bro did u also got through the whole installation process and got error on localhost:3000? please help me out if u can
@raphaelmro
@raphaelmro 2 года назад
Amazing Rails starter course!! Congrats! 🎉
@MoLcZaN
@MoLcZaN 2 года назад
Thank you, this video helps me much to understand basics of rails.
@OckhamsChainsaw1337
@OckhamsChainsaw1337 2 года назад
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 года назад
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 года назад
@@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 года назад
never mind keeping the '_friend.html.erb' and not deleting fixed this error for me
@levilyon7088
@levilyon7088 2 года назад
It seemed to work for me at the time, glad you were able to figure it out!
@VloggerVish
@VloggerVish 3 года назад
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.
@shaneway007
@shaneway007 Год назад
Your video and teaching is excellent thankyou. I'm relatively new to web development and this is fantastic
@AdityaRaocs
@AdityaRaocs 3 года назад
just finished and deployed !!!! thankyou very much
@stephencano2737
@stephencano2737 3 года назад
good day sir. it seems that the railsinstaller.org is not anymore available.. is there other links?
@emberavenge7162
@emberavenge7162 3 года назад
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.
@gooffball9758
@gooffball9758 2 года назад
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 года назад
THANK YOU. I was having this same issue and this fixed it...after HOURS of troubleshooting...
@gooffball9758
@gooffball9758 2 года назад
@@lobster3496 No problems :)
@renzobeltran
@renzobeltran 3 года назад
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
@viper_blizzard4822
@viper_blizzard4822 Год назад
on the newest version of rails when you run the command "$rails g scaffold" it no longer creates the css style sheets, does anyone know how I can fix this or add them manually
@user-vg3iz4yp4s
@user-vg3iz4yp4s 3 года назад
"Because python can do anything just badly" Micheal Reeves
@tolkien7101
@tolkien7101 3 года назад
Freecodecamp making new programmers life easy.
@elnuraakysbekova467
@elnuraakysbekova467 3 года назад
Thanks to this wonderful tutorial! it was just great!!!
@falzar712
@falzar712 3 года назад
thank you so much i really needed this
@asmitapatel189
@asmitapatel189 3 года назад
Hie.. railsinstaller.org is not working on my laptop
@R3lentlessSec
@R3lentlessSec 2 года назад
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 ?
@anthonykim4072
@anthonykim4072 2 года назад
Thanks for such a great course!
@ES11777
@ES11777 Год назад
Excellent tutorial for beginners with Rails! Thank you
@phoxercom
@phoxercom 3 года назад
is railsinstaller.org down? it doesn't load :/
@emberavenge7162
@emberavenge7162 3 года назад
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.
@kami_dende
@kami_dende 2 года назад
In the 'Style with bootstrap' section, when you open your views (such as friends/index.html.erb), it shows a table in the HTML. For me it just shows something like and then . It renders in my browser with no table. I had to go in and add the entire table in my index.html.erb file. Does anyone know why this is happening? I'm brand new to ruby on rails.
@Bigdog33R
@Bigdog33R 2 года назад
I started about the same time as you, and the same happened for me. Perhaps ROR has changed something in the year since this course was released. I had some trouble installing it too and had to find different instructions from what the original was. Right now I'm stuck just after installing devise and setting the nav paths for sign up, sign in etc. The sign up page displays fine, but when I try to sign up I get an error NoMethodError in Devise::RegistrationsController#create. I've asked for help on substack but no help yet. I rechecked every step I did against the video, and did everything the same. So frustrating.
@kami_dende
@kami_dende 2 года назад
Yep exact same thing pretty much. I got the same or a similar error when attempting to register/sign up a user. I haven’t spent much time on it since then. Maybe need to do some more general ROR learning to figure that out. Let me know if you can make it work , I’ll do the same.
@Bigdog33R
@Bigdog33R 2 года назад
@@kami_dende I found a comment from George Meng below here where he said that a step was missing, and to type: rails generate devise:controllers users It seemed right to me, as the issue seems to be with the controller path, but I tried this and it still doesn't work.
@dionnamorris6367
@dionnamorris6367 2 года назад
I'm currently having the same issue
@Povai
@Povai 2 года назад
@@Bigdog33R Did you figure it out?
@funnelclix489
@funnelclix489 3 года назад
Excellent tutorial, I have been looking at moving from PHP and this has convinced me. Thank you.
@sonysantos
@sonysantos 2 года назад
I want to give a new like every two minutes! Great tutorial!
@automatusqa
@automatusqa 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)
@brianmainah
@brianmainah 2 года назад
Did you sort this?
@ian5024
@ian5024 3 года назад
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🙏🙏
@lorenaodino1024
@lorenaodino1024 Год назад
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 🤣
@victormartins3988
@victormartins3988 2 года назад
Thank you! Really great video and very helpful
@andrewmcburney4425
@andrewmcburney4425 2 года назад
How is this free!? Incredible tutorial, and a great teacher!
@lupuscanis4370
@lupuscanis4370 2 года назад
Rails would be a lot more popular to use if it weren't for the windows issues.
@GunamaniJena
@GunamaniJena 3 года назад
It is the best tutorial and hands on on Ruby on Rails Dear Mosh you are like Kohinoor diamond hats up
@flwless3226
@flwless3226 Год назад
Hey, quick question: when i visit the guides website, it says that i only need ruby and SQLite3 to run rails, seems like they changed it. Does this apply or should i install yarn and node.js anyways because this tutorial course requires it?
@ter753
@ter753 2 года назад
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 ?
@georgemeng7836
@georgemeng7836 2 года назад
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 года назад
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.
@ilonakhomenko3797
@ilonakhomenko3797 3 года назад
Thank you so much for the video!
@user-bc5wf2qq2r
@user-bc5wf2qq2r 10 месяцев назад
This is awesome! Very helpful content. Thank You so much!
@hex.70
@hex.70 2 года назад
I came here to learn rails, but now I want to learn django
@Chupavac1
@Chupavac1 Год назад
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
@bataragirsang
@bataragirsang 3 года назад
the only good and bad things about ruby on rails is: TO MUCH MAGIC
@Psymon1471
@Psymon1471 2 года назад
Great video!! Good as a quick refresher course for me.
Далее
I built 10 web apps... with 10 different languages
14:23
Ruby Programming | In One Video
36:36
Просмотров 155 тыс.
This is Why Programming Is Hard For you
10:48
Просмотров 725 тыс.
5 Secrets to Becoming a Badass Ruby on Rails Developer
28:01
Every React Concept Explained in 12 Minutes
11:53
Просмотров 504 тыс.
Ruby on Rails: The Documentary
44:16
Просмотров 245 тыс.
*Next-door 10x Software Engineer* [FULL]
4:50
Просмотров 418 тыс.
What Makes A Great Developer
27:12
Просмотров 164 тыс.