Antipattern: Fire & Forget
When dealing with an external service, like an API call, you can: 1) Check the response, catching for any and…
Achieving Developer Excellence with Automated Testing
Stuff relevant to Ruby on Rails.
When dealing with an external service, like an API call, you can: 1) Check the response, catching for any and…
Perhaps you have already learned about mocking and stubbing in tests. Ruby has a secret tool that will unlock the…
Beginner When you first learn Rails, you will learn about an important little tool call flash messages. These messages are…
Beginner Ahh, the Rails cache. A funny thing about caching— it’s really important. Rails has a fancy little cache mechanism…
Tested codebases are the most signficiant development from Rails and Agile over the last 15 years. End-to-end testing, in particular,…
Beginner This post is part of my Stepping Up Rails: Go From Good to Great series. Get the complete series…
Beginner This post is part of my Stepping Up Rails series. Ahh, the elusive N+1 query. Perhaps you’ve heard of…
Beginner This post is part of my Stepping Up Rails: Go From Good to Great series. Get the complete series…
Beginner Rails Autoloading is what happens in the background that most developers don’t even think about. The Rails Autoload is…
Today I’m gonna talk about Fat Models. Fat Models are unavoidable when you are learning Rails. That’s because when they…