I think you're the first person to notice/comment on the music in about a year haha. Glad you like it! It's been a real challenge turning it down enough to not be intrusive, but loud enough to cover the occasional silence. Thank you!
Thanks a ton. Your videos helped me through a lot each day.. Can you also cover some more on Rspecs please? I am a mid level rails dev, but working with Rspec sometimes scares me, I usually delegate this out to other devs😂
great video! You had me checking the rails guides for validations as I was wondering how your custom validation method was working...turns out adding an error to the errors object on title causes validation failure.
You have two options that I've personally seen used. One is to create an account that has read permissions for any private gems you have, and then pass that username and password with your git repo in your gem file. The other is to create a personal access token which gives you permissions for a single repository per token. I'm on my phone right now, so the best I can do is give you a link. But I think this one covers both options, although admittedly I did just skim it 😅 depfu.com/blog/2017/08/02/bundler-and-private-dependencies
I really like the background music.
Keep up the good work!
I think you're the first person to notice/comment on the music in about a year haha. Glad you like it! It's been a real challenge turning it down enough to not be intrusive, but loud enough to cover the occasional silence.
Thank you!
Yeah I know. I find it relaxing at the same time watching your videos.
Thanks a ton. Your videos helped me through a lot each day.. Can you also cover some more on Rspecs please? I am a mid level rails dev, but working with Rspec sometimes scares me, I usually delegate this out to other devs😂
I'm pretty sure if you're delegating testing that means you're at least a senior dev or management 🤣
But yeah, I can cover rspec more haha.
Get caught up with the rest of the engine/gem playlist: th-cam.com/play/PL3mtAHT_eReyw8jh6YSpjTp-JsHhnPUgM.html
Hope this helps!
Great video Deanin!! Thanks a lot 😃
great video! You had me checking the rails guides for validations as I was wondering how your custom validation method was working...turns out adding an error to the errors object on title causes validation failure.
Nice! Could you do one on packaging javascript in a gem?
Looks great. What if the repo was private-private?
You have two options that I've personally seen used.
One is to create an account that has read permissions for any private gems you have, and then pass that username and password with your git repo in your gem file.
The other is to create a personal access token which gives you permissions for a single repository per token.
I'm on my phone right now, so the best I can do is give you a link. But I think this one covers both options, although admittedly I did just skim it 😅
depfu.com/blog/2017/08/02/bundler-and-private-dependencies
Thanks! I think the access token is best.
Very cool
What does &: frozen means
What does all(&:frozen?) Syntax means in ruby. I understand all(|item| item.frozen?) means. But what &:frozen? means?
it's the same thing, just a shorthand.
is a Set considered an Array in ruby 😜