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
" These VIM rules match the MRI C indentation rules. | |
" | |
" To enable use of this project specific config, add the following to your | |
" ~/.vimrc: | |
" | |
" " Enable per-directory .vimrc files | |
" set exrc | |
" " Disable unsafe commands in local .vimrc files | |
" set secure |
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
require 'rubygems' | |
require 'bundler/setup' | |
require 'reel' | |
require 'celluloid/io' | |
require 'pg' | |
module PGNotifications | |
def self.included(actor) | |
actor.send(:include, Celluloid::IO) | |
end |