This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Improve / Fix as many things in the code below | |
# Answers should be sent to [email protected] | |
# Good luck | |
class User < ActiveRecord::Base | |
validates_presence_of :name, :email, :date_of_birth, :age_category | |
before_save do | |
age = (Time.now - date_of_birth).year | |
if age < 10 age_category = 'child' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Upgrade PostgreSQL from 9.0.4 to 9.1.4 via HomeBrew on Mac OSX | |
# | |
# by David Sommers (tweaked by me) | |
# | |
brew update | |
brew update postgres |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use_vcr_cassette 'some/cassette', :tag => :bad_staging_api |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'yaml' | |
if ARGV.size < 1 | |
puts "Usage: github-test.rb my-project.gemspec" | |
exit | |
end | |
require 'rubygems/specification' |