Flatiron School

First Ruby Motion App

I recently dived into rubymotion head first and since there is a definite lack of quality tutorials out there I decided to outline my first ruby motion project.
Flatiron School

Here’s Where to Start Flatiron School Prework

When creating this pre-work, The Flatiron School had four goals in mind.
Flatiron School

Easy Datetime Comparison With ActiveRecord and Rails

The following is a guest post by Stephen Chen and originally appeared on his blog. Stephen is a Flatiron School alumni. You can learn more about him here, or follow him on Twitter here. TL;DR: Instead of creating or hardcoding your own DateTime and Date objects, use built in ActiveSupport methods in your ActiveRecord queries. Using ActiveRecord is great because […]
Flatiron School

How Params Works in Rails

As you might have guessed, params is an alias for the parameters method. params comes from ActionController::Base, which is accessed by your application via ApplicationController.
Flatiron School

By Any Other Name: My 3 Favorite Ruby Method Names

When called on an object, ‘tap’ yields that object to a block where other operations can be performed on it, and then returns the object to the method chain.
Flatiron School

Submitting a Pull Request

The following is a guest post by Kevin Curtin and originally appeared on his blog. Kevin is currently a student a The Flatiron School. You can learn more about him here, or follow him on twitter here. Last week I talked about the importance of conributing to open source documentation. Here is a quick guide on how to actually go through […]