This file contains hidden or 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
| :syntax on | |
| :set tabstop=2 | |
| :set shiftwidth=2 | |
| :set expandtab | |
| :set autochdir | |
| :autocmd FileType xml,html,xhtml set tabstop=2|set shiftwidth=2 | |
| :autocmd FileType tex,txt set spell | |
| :set smartindent | |
| :color desert | |
| highlight OverLength ctermbg=red ctermfg=white |
This file contains hidden or 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
| # General | |
| .DS_Store | |
| .AppleDouble | |
| .LSOverride | |
| # Icon must end with two \r | |
| Icon | |
| # Thumbnails |
This file contains hidden or 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
| { | |
| "editor.rulers": [79, 81], | |
| "editor.tabSize": 2, | |
| "editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?", | |
| "terminal.integrated.shell.osx": "/bin/zsh", | |
| "workbench.editor.enablePreviewFromQuickOpen": false, | |
| "workbench.startupEditor": "newUntitledFile", | |
| "[ruby]": { | |
| "editor.tabSize": 2, | |
| }, |
This file contains hidden or 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
| # spec/lib/tasks/notification_rake_spec.rb | |
| require 'spec_helper' | |
| describe 'notifications:weekly' do | |
| include_context "rake" | |
| let(:users){ [double(:user)] } | |
| let(:user_deliveries){ double(:user_deliveries) } | |
| before{ User.stub(:all).and_return( users ) } |