I got started with Rails about 12 years ago and have bounced between LOTS of other frameworks and languages during that time. Rails is still the most sane and well designed of all the frameworks I've ever used and still amazed that it's not used everywhere.
it fascinates me really. I switch between a lot of different environments for my professional work, and to this day in terms of pushing something out to an MVP nothing, NOTHING beats Rails. The closest thing I can find is Laravel, but performance wise and documentation/tutorials/examples Rails is still a blessing. People complain about the performance, but I think it has more to do with not following proper standards than anything else. Rails is still a beast in this regard.
wow! it has been 12 years... so do you think Django/Python will outgrow the advantages or Ruby/Rails ? as all the new startups are into AI,ML, Bigdata etc...... etc
@@TheGlobalNetworker Django is probably also going to go down. Currently the trend is going in favor of NodeJS. Specially with the rise of modern "full-stack" Frameworks like Next.js and Svelte-Kit. Not saying that Django and Rails are bad, not that Javascript is better. Just talking about number of users here
1:13:44 [Data Confirm Issue - fixed] For those who are doing this tutorial in *Rails 7*, here's how you can fix the confirm alert not being showed: ``` ```
I'm working on a new project (my first real rails app) and whenever I got stuck I procrastinated by watching this video. Every time, within a few minutes you inadvertently answered my question and got me unstuck. Thanks!
Nicee thanks a lot!!!! I'm just 3 weeks old with rails and most resources rely on the documentation. Thanks for being one of the 5 video tutorials on youtube on ruby on rails
For anyone who may run into this down the line, when formatting the time at 57:26, this has been changed in newer versions of rails to to_formatted_s or to_fs to_s will throw an error
Thanks Web-Crunch for your awesome 👌 content and the way you explain the concepts makes perfect sense. I m student and last semester I had to study RoR and you have been a great help.
also for rails 7.0, in 1:13:05, you have to either do or , since in link_to, 'method: :delete' is deprecated and rails ui js is deactivated by default. an additional note for the new 'link_to' code is to update your entries_controller.rb's destroy method to this line: 'format.html { redirect_to root_path, status: :see_other, notice: 'Entry was successfully destroyed.' }'.
@Johnny I hope you have experience with Ruby on Rails, if you are interested to write examples articles on ruby on rails pls reach me at rrtutor.me@gmail.com
Brad: I was originally really disappointed when you took some time off... and I do miss your teaching style, but videos like this are great. I would have had ruby on rails wayyyyy down on my to-do list and would have never looked into it but this video was awesome.
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.
Finally a recent rails tutorial, as well as one that assumes basic knowledge and doesn't go into "wHat iS a fUncTioN". No shade to new folks, but some of us just need a quick way to ramp up for work
to install this on windows is a headache, you have to watch another specific video for this, but its worth it in the long run when you get everything working.
man i tired django and laravel , but this rails is just another level of ease .. thank you so much you opened my eyes on rails,, i tried to learn it before but it made no sens to me specially the instillation part was so hard
@@TraversyMedia no worries Brad! I just wanted to confirm, thought my mobile was acting up 😅 another great video, as always! Thanks for all you do for us 🔥🙌
@@eugenenovikov671 so what? ruby language jobs are actually one of the high paying out there.. and one more thing less Competition more chance to standout..
Probably it is Palenight Theme (with some modifications or just diff color on my MAC). Check it out : marketplace.visualstudio.com/items?itemName=whizkydee.material-palenight-theme
When Andy uses a bulma template at around 40 minutes I didn't see a link to the one he picked, I used github.com/BulmaTemplates/bulma-templates/blob/master/templates/hero.html and cut out all the text and made it similar to the one in the video
this tool should use "framework for perfectionist with deadlines" it has realtime capability since long ago, SPA-like features, bunch of gems, etc. at least.
Thanks for a great walk through! However I wanted to point out that there is small miss on N+1 queries (entry has category) which is worth mentioning and how to avoid it
At abt minute 40:01 he add the _header.html.erb file, and renders is it in the body of application.html.erb. I did the same, but my _header wont show. No error either, which confuses me alot rn
Sir could you make a course on rails with react along with creating api in rails and fetching it's data from react and displaying it on react app screen where if we add new data it would get stored to the api we created using rails?
Guys, anyone knows what auto-code program or extention that he is utilizing? for instance, calling tag by simply typing .div + tab key. I am looking for it but could not find one
The calories COULD be calculated automatically when you enter a number of grams per fats, carbs and proteins. * fats: 9 kcal/g * carbs, proteins: 4 kcal/g
@@18.michaelmaramag89 check to see what employers are looking for in your area at your level. For example, where I live you only see employers looking for Sr. Rails Devs, no Jr or Mid levels positions. Whereas you will see Jr and mid positions for Django around here.
David Nichol what should i learn. Can beginner learn golang as first prog lang? I have experience in frontend. I just want to pick my first backend language.
I got started with Rails about 12 years ago and have bounced between LOTS of other frameworks and languages during that time. Rails is still the most sane and well designed of all the frameworks I've ever used and still amazed that it's not used everywhere.
it fascinates me really. I switch between a lot of different environments for my professional work, and to this day in terms of pushing something out to an MVP nothing, NOTHING beats Rails. The closest thing I can find is Laravel, but performance wise and documentation/tutorials/examples Rails is still a blessing. People complain about the performance, but I think it has more to do with not following proper standards than anything else. Rails is still a beast in this regard.
@kapnkregg if you are interested to write examples articles on ruby on rails pls reach me at rrtutor.me@gmail.com
wow! it has been 12 years... so do you think Django/Python will outgrow the advantages or Ruby/Rails ? as all the new startups are into AI,ML, Bigdata etc...... etc
@@TheGlobalNetworker Django is probably also going to go down. Currently the trend is going in favor of NodeJS. Specially with the rise of modern "full-stack" Frameworks like Next.js and Svelte-Kit. Not saying that Django and Rails are bad, not that Javascript is better. Just talking about number of users here
it's because you can do front end and back end using javascript
1:13:44 [Data Confirm Issue - fixed] For those who are doing this tutorial in *Rails 7*, here's how you can fix the confirm alert not being showed:
```
```
thanks !!!
I'm working on a new project (my first real rails app) and whenever I got stuck I procrastinated by watching this video. Every time, within a few minutes you inadvertently answered my question and got me unstuck. Thanks!
Nicee thanks a lot!!!! I'm just 3 weeks old with rails and most resources rely on the documentation. Thanks for being one of the 5 video tutorials on youtube on ruby on rails
It was so refreshing to see a crash course with tests included.
So true
What do you think, will Rails ever comeback to be a hypie-thing?
For anyone who may run into this down the line, when formatting the time at 57:26, this has been changed in newer versions of rails to to_formatted_s or to_fs
to_s will throw an error
thanks a lot!
Thank you so much !!
This helped me
thanksss!!!!!
Finally Ruby on Rails course in 2020.. Thank You so much for making this.. Long live ruby and rails..
To make the time format work on Rails 7, use `to_fs` or `to_formatted_s` instead of `to_s`
Thank you so much! I’ve spent hours trying to figure out why `to_s` wasn’t working in Rails 7.
@@scarlettlerouge Glad to be of help 😁
Amazing, quick and effective getting started guide to the framework with all the needed essentials to hit the ground running
This was an amazing kickstart for me learning a new language and framework. Rails seems awesome. Thank you for this!!
This channel is becoming the next Freecodecamp.
but without Indian accent
@@eugenenovikov671 what you mean?
Freebradcamp.
@@sauravjain6135 i mean people dont understand Indian English
@@eugenenovikov671 ok, but why you mentioned India, there is not Indian on FreeCodeCamp and traversy media who is making the tutorial.
Thanks Web-Crunch for your awesome 👌 content and the way you explain the concepts makes perfect sense. I m student and last semester I had to study RoR and you have been a great help.
🙏
also for rails 7.0, in 1:13:05, you have to either do or , since in link_to, 'method: :delete' is deprecated and rails ui js is deactivated by default. an additional note for the new 'link_to' code is to update your entries_controller.rb's destroy method to this line: 'format.html { redirect_to root_path, status: :see_other, notice: 'Entry was successfully destroyed.' }'.
This was helpful man. Thanks. Also there was no need of including "gem rails-ujs". Is this added by default?
You want to learn Ruby on rails, This guy is hands down the best on RUclips I know, check his channel.. Thanks to Brad
😊
Yea but he doesn't go step by step. He just writes code and doesn't really explain what for.
@@kevyyar This is a crash course. That is by design.
Yeah, finally something that's not "ooo ruby is bad" kind of thing
Those haters are boomers who were forced to learn C in college instead of trying a high level and modern language. Jealousy.rb
Amazing! I'm not the kind of person who pay attention to tutorials... But this one is the best! RUBY ON RAILS!!!!
finally, someone who teaches rails for free and with actual teaching skills
@Johnny I hope you have experience with Ruby on Rails, if you are interested to write examples articles on ruby on rails pls reach me at rrtutor.me@gmail.com
Really interesting to watch .. one of the most popular languages in the world always guarantees a job
Ruby will always be my favorite. :)
Thanks for this video @Web-Crunch and @Traversy Media. It is such a gem. 💎 (Pun intended)
Excellent partnership ! I've learned a lot from his channel.
🙏
Nice seeing you collab on the channel! And good job on spreading the Ruby goodness. ♥️
Thanks! 💎
your channel is pity good too
Wow!!! they read in my mind! I am learning RoR right now and they suddenly make a crash course about it!!! Thanks!!!
I've been impressed by the this framework
Excellent tutorial regarding the basics of learning Ruby on Rails
Awesome course man, just loved it.
Make more crash courses of rails with different scenarios.
Thanks man
amazing walk through really helped me get started with a project I was doing. Thank you so much
Dope to see you on here Andy!
🎉
It's funny that I was actually watching a Web Crunch video hours before and figured that I need a more in-depth crash course tutorial then here I am!
Brad: I was originally really disappointed when you took some time off... and I do miss your teaching style, but videos like this are great. I would have had ruby on rails wayyyyy down on my to-do list and would have never looked into it but this video was awesome.
This channel is doing really well thank you all
Finally an up to date version
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.
Finally a recent rails tutorial, as well as one that assumes basic knowledge and doesn't go into "wHat iS a fUncTioN". No shade to new folks, but some of us just need a quick way to ramp up for work
Woww.. !!! Startups Fav. Lang
Hi Gurupal. Why did u say that it is startups fav language. Can u pls explain😃
@Coldserb ohh..I understand..Thnku very much Coldserb.
to install this on windows is a headache, you have to watch another specific video for this, but its worth it in the long run when you get everything working.
Rails will rise again.
Long live Ruby!
man i tired django and laravel , but this rails is just another level of ease .. thank you so much you opened my eyes on rails,,
i tried to learn it before but it made no sens to me specially the instillation part was so hard
Anyone notice around 15 seconds of blank screen+ mute at around 7:52??
Sorry about that
@@TraversyMedia no worries Brad! I just wanted to confirm, thought my mobile was acting up 😅 another great video, as always! Thanks for all you do for us 🔥🙌
It's Andy!!!!! I always watch web-crunch
Great tutorial
Dude it's been like 13 seconds..
@@beganovich 😂😂
Dude it's been like 4 minutes...
10g speed
I am very excited about this crash course!
Thanks so much for this, have been looking forward to learning this technology, thanks.
Best framework for Agile development
Nice one. But could we get some ASP.NET Core stuff like Razor Pages / Core MVC / Core Web Application + Angular / Core Web Application + React ?
@Naofumi Iwatani I wasn't talking about Blazor
I was planning to learn rails 🔥🔥
and get no job except startups?
@@eugenenovikov671 so what? ruby language jobs are actually one of the high paying out there.. and one more thing less Competition more chance to standout..
@@faizan2006 legacy support and startups, which will be in py rewritten?
Weird. I was just thinking I should revisit ruby again and see if it seems worth it for me now.
Same here
35:46 LOL how did you do this auto code completion with the container, not working for me :/ thats some awesome help (ruby markup is installed)
which color theme are you using for your editor and also which font are you using for your editor currently
Probably it is Palenight Theme (with some modifications or just diff color on my MAC). Check it out : marketplace.visualstudio.com/items?itemName=whizkydee.material-palenight-theme
I was just thinking about this today :)))
Damn, never thought I'd see this
Thank you. It was very clear and helpful.
Hey brad! How about an updated flask tutorial and maybe django
Good job traversy webcrunch.
Hello! What are your visual studio code extensions that you are using ? Thanks
Paging, Mr Stefan Mischook!
We need your input on Ruby.
rofl
Was about to make the joke the 6 dislikes are from Stefan
When Andy uses a bulma template at around 40 minutes I didn't see a link to the one he picked, I used github.com/BulmaTemplates/bulma-templates/blob/master/templates/hero.html and cut out all the text and made it similar to the one in the video
at 33:45 I am not gettting the same page even I am getting the error "EntriesController#index is missing a template for request formats: text/html".
this tool should use "framework for perfectionist with deadlines"
it has realtime capability since long ago, SPA-like features, bunch of gems, etc. at least.
anyone else having webpacker missing entry error when adding root to: "entries#index"
I just sign in your channel. I looooveeeee it.
Thanks for your work!
Thanks! I really needed this!
I come from mobile development and this just went way over my head.
क्या वीडियो है, बहुत बढ़िया मजा आगाया
Thanks for a great walk through!
However I wanted to point out that there is small miss on N+1 queries (entry has category) which is worth mentioning and how to avoid it
At abt minute 40:01 he add the _header.html.erb file, and renders is it in the body of application.html.erb. I did the same, but my _header wont show. No error either, which confuses me alot rn
can it be that you forget the "=" sign after "
Sir could you make a course on rails with react along with creating api in rails and fetching it's data from react and displaying it on react app screen where if we add new data it would get stored to the api we created using rails?
Quality content as usual. Well done!
Guys, anyone knows what auto-code program or extention that he is utilizing? for instance, calling tag by simply typing .div + tab key. I am looking for it but could not find one
emmet
thanks bro, very intersting
@11:30 I think he is using an alias. Use rails -h insted to see the same result.
root to: "entries#index" doesn't work at 33:19
Webpacker::Manifest::MissingEntryError in Entries#index
Can you please share your terminal settings and theme?
Does anyone know what extension this awesome human is syntax highlighting?
WOW. O_O How have i not used this before??!?
What are the benefits of using rails over crystal with amber?
what is the tool that you just click dot , for example .container, it will write the html tag for you?
Wow! another Bjarne Stroustrup on the go, so wondering why Danish are so great of inventing languages for the machine.
Keep going 👏
The calories COULD be calculated automatically when you enter a number of grams per fats, carbs and proteins.
* fats: 9 kcal/g
* carbs, proteins: 4 kcal/g
Hello guys please help
What kind of formatter are you using for .rb and .erb file on vscode
I always get an error whenever i intend to create a new project....what might be the cause of my errors
Could you please share ruby code for scenario:
Finding a find in a directory with find command and changing the file permissions.
Thanks in advance.
What syntax highlighter are you using?
Ruby On Rails vs Django? whats the right pick ??
Of course Django is the best.
Rails
13:49 destroy made me giggle.
how much of ruby should i know before watching this course?
which theme are you using
How do you format ERB files in VSCode like that? Having the same funtionality you got with HTML (Emmet)
In VSCode, Go to Settings, In "Emmet: Include Languages" map erb to html
JAVA is next?
I am torn between rails or django to learn this pandemic.. please help.
Neither :(
Learning for fun/enrichment or for skills to show an employer?
Seth K for employer..😁👍
@@18.michaelmaramag89 check to see what employers are looking for in your area at your level. For example, where I live you only see employers looking for Sr. Rails Devs, no Jr or Mid levels positions. Whereas you will see Jr and mid positions for Django around here.
David Nichol what should i learn. Can beginner learn golang as first prog lang? I have experience in frontend. I just want to pick my first backend language.
is this spa (single page application) because i see there's no reloading everytime you click edit/show ?
when i follow the tutorial my browser seems reloading everytime i click edit/add/sow
Can anyone tell me why one should use RoR instead of Node?
do what you enjoy/are good at/can get a job with. Simple 😊
what is the name of the font you use in your terminal ?
also, is this iTerm2 ?
Pretty nice crash course. I'd love to see hooks on rails next!
GIthub repo ?
where is brad? i know but still missing him.
Silly question to ask, but Mr.Brad who edits your thumbnails & how if possible 👑 || They r Eye catching 👍
i also think the same way...!
Will this same code work in Linux?
Ruby and Rails are super cool tho. It is like BlitzJs or RedwoodJs for the Javascript ecosystem...