Skip to content

Instantly share code, notes, and snippets.

@huoxito
huoxito / order_mailer_decorator.rb
Created September 17, 2013 14:46
Dont deliver order and shipments email
# put at app/mailers/spree/order_mailer_decorator.rb
module Spree
OrderMailer.class_eval do
def confirm_email(order, resend = false)
self.message.perform_deliveries = false
end
def cancel_email(order, resend = false)
self.message.perform_deliveries = false
end
@jondkinney
jondkinney / README.md
Last active December 14, 2023 06:39
jondkinney's console vim setup

Console VIM and Tmux setup compatible with Mac OS X and Linux.

Installation

Install by running the following command in your terminal:

exec 3<&1;bash <&3 <(curl https://gist.githubusercontent.com/jondkinney/2040114/raw/vim.sh 2> /dev/null)