Building a Testing Framework Similar to RSpec in Ruby
A guide to building and understanding a testing frameworks like RSpecMore
Transactions in Ruby on Rails and Atomic Bugs
A few examples of when using a transaction in Ruby on Rails doesn't work as expected.More
Eager Loading Polymorphic Associations with Ruby on Rails
A tutorial on eager loading polymorphic associations with Ruby on Rails avoiding "n-plus-one" queries.More
Fabrication vs FactoryGirl
A deep dive into the performance of Fabrication and FactoryGirl.More
Automating Favicon Generation in Rails using Sketch
How to use rake, rails, convert and sketch to generate a favicon.More
Building a Rack Web Server in Ruby
Managing sockets, handling HTTP parsing and generation, and integrating with Rack to build a simple web server from scratch.More
Augmenting a Ruby on Rails App with Vue.js
A lightweight approach to integrating Vue.js into a Ruby on Rails application.More
The Enigma Machine using Ruby
The Enigma machine explained in RubyMore
Advanced Eager Loading in Rails
How to load 'N' records per parent record efficiently in Ruby on RailsMore
Mixins With Backbone Using CoffeeScript and JavaScript When Integrating With Rails
A quick introduction to using mixins with Backbone to extract out common codeMore
Setup a Clean Backbone JS App With Rails
A basic introduction on how to setup a new Rails project with Backbone JSMore
Rails Concerns for URL and Path Helpers
Concerns offer a reusable way of sharing common code. This can be used to extract URL helpers.More