Skip to content

Instantly share code, notes, and snippets.

View kylemacey's full-sized avatar
💻
Writing bunches of code and stuff

Kyle Macey kylemacey

💻
Writing bunches of code and stuff
View GitHub Profile
{
"auto_complete": true,
"auto_complete_commit_on_tab": true,
"auto_indent": true,
"bold_folder_labels": true,
"caret_style": "phase",
"color_scheme": "Packages/Color Scheme - Default/Cobalt.tmTheme",
"create_window_at_startup": false,
"ensure_newline_at_eof_on_save": true,
"file_exclude_patterns":
@adamrobbie
adamrobbie / application.rb
Created November 15, 2012 11:57
ActionMailer hook to intercept all outgoing development email
# Place me in config/application.rb or in your development file
if Rails.env.development?
class Hook
def self.delivering_email(message)
message.to = "\"#{message.to.first}\" <my@email.com>"
message.cc = nil if !message.cc.nil?
message.bcc = nil if !message.bcc.nil?
end
end