Skip to content

Instantly share code, notes, and snippets.

View Sutto's full-sized avatar

Darcy Laycock Sutto

View GitHub Profile
#!/usr/bin/ruby
require 'rubygems'
require 'mysql'
require 'sqlite3'
def with_mysql
db_object = Mysql.init()
db_object.real_connect('localhost','things','1234','things')
# Recursion
# I usually put them around method arguments
def recursive(x)
return if x >= 10
puts x
recursive x + 1
end
# No Brackets here
recursive 0
Goal is => Client.first.items... Can do with finder_sql, but want an activerecord way!
class Client < ActiveRecord::Base
has_many :contacts
has_many :tasks, :through => :contacts
has_many :items, :through => :contacts # THIS DOESNT WORK
end
class Contact < ActiveRecord::Base
belongs_to :client
class DownloadsController < ApplicationController
before_filter :can_create?, :only => [:new, :create]
before_filter :can_edit?, :only => [:edit, :update, :destroy]
resources_controller_for :downloads
helper_method :can_create?, :can_edit?
def can_create?
return !!(current_user && current_user.superuser?)
end