I really like the background music. Keep up the good work!
@Deanin Жыл бұрын
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!
@ervintorra Жыл бұрын
Yeah I know. I find it relaxing at the same time watching your videos.
@Deanin Жыл бұрын
Get caught up with the rest of the engine/gem playlist: kzbin.info/aero/PL3mtAHT_eReyw8jh6YSpjTp-JsHhnPUgM Hope this helps!
@agustinpalmam2923 Жыл бұрын
Great video Deanin!! Thanks a lot 😃
@writtekdey6605 Жыл бұрын
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😂
@Deanin Жыл бұрын
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.
@ithmatic11 ай бұрын
Nice! Could you do one on packaging javascript in a gem?
@supermarinespitfire1 Жыл бұрын
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.
@alexanonym158411 ай бұрын
What does &: frozen means
@hass89 Жыл бұрын
Looks great. What if the repo was private-private?
@Deanin Жыл бұрын
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
@hass89 Жыл бұрын
Thanks! I think the access token is best.
@bernard2560 Жыл бұрын
Very cool
@stpaquet Жыл бұрын
is a Set considered an Array in ruby 😜
@alexanonym158411 ай бұрын
What does all(&:frozen?) Syntax means in ruby. I understand all(|item| item.frozen?) means. But what &:frozen? means?