Skip to content

Instantly share code, notes, and snippets.

View robertmilner's full-sized avatar

Robert Milner robertmilner

View GitHub Profile
@keo
keo / resque_mock.rb
Created February 19, 2012 08:25
Simple mocking for Resque
require 'resque'
module Resque
def self.mock!
puts "*** Mocking Resque" if ENV['VERBOSE']
extend MockExt
@jobs = []
end
module MockExt
@rstacruz
rstacruz / index.md
Last active November 3, 2023 09:56
Rails models cheatsheet

Rails Models

Generating models

$ rails g model User

Associations

belongs_to

has_one

@artero
artero / launch_sublime_from_terminal.markdown
Last active September 12, 2024 02:13 — forked from olivierlacan/launch_sublime_from_terminal.markdown
Launch Sublime Text 2 from the Mac OS X Terminal

Launch Sublime Text 2 from the Mac OS X Terminal

Sublime Text 2 ships with a CLI called subl (why not "sublime", go figure). This utility is hidden in the following folder (assuming you installed Sublime in /Applications like normal folk. If this following line opens Sublime Text for you, then bingo, you're ready.

open /Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl

You can find more (official) details about subl here: http://www.sublimetext.com/docs/2/osx_command_line.html

Installation