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
=<SNR>24_SuperTab('n') | |
Error detected while processing function <SNR>24_SuperTab: | |
line 17: | |
E121: Undefined variable: b:complType | |
Press ENTER or type command to continue | |
Error detected while processing function <SNR>24_SuperTab: | |
line 17: | |
E15: Invalid expression: b:complType == 'context' | |
Press ENTER or type command to continue | |
Error detected while processing function <SNR>24_SuperTab: |
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
function __parse_git_dirty { | |
git diff --quiet HEAD &>/dev/null | |
[[ $? == 1 ]] && echo " ∴ " | |
} | |
function __parse_git_branch { | |
local branch=$(__git_ps1 "%s") | |
[[ $branch ]] && echo " $branch$(__parse_git_dirty)" | |
} |
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
# [tsaleh@tardis:~] cat bin/v | |
#!/bin/bash | |
if [ $# == 0 ]; then | |
mvim | |
else | |
mvim --remote-tab-silent "$@" 1>/dev/null 2>&1 | |
fi |
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
thoughtbot@ey03-s00383 (production) /data/thoughtbot/shared/db_backups $ df -h | |
Filesystem Size Used Avail Use% Mounted on | |
/dev/sda1 25G 8.5G 17G 34% / | |
udev 10M 124K 9.9M 2% /dev | |
shm 385M 0 385M 0% /dev/shm | |
/dev/sdb1 34G 4.5G 30G 14% /data |
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
OPERATORS | |
The primaries may be combined using the following operators. The operators are listed in order of decreasing | |
precedence. | |
( expression ) This evaluates to true if the parenthesized expression evaluates to true. | |
! expression | |
-false expression | |
-not expression | |
This is the unary NOT operator. It evaluates to true if the expression is false. |
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
[tsaleh@tardis:~/code/mgs master] spec spec | |
/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require': no such file to load -- spec/example/configuration (MissingSourceFile) | |
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require' | |
from /Users/tsaleh/code/mgs/config/../vendor/rails/activerecord/lib/../../activesupport/lib/active_support/dependencies.rb:495:in `require' | |
from /Users/tsaleh/code/mgs/config/../vendor/rails/activerecord/lib/../../activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in' | |
from /Users/tsaleh/code/mgs/config/../vendor/rails/activerecord/lib/../../activesupport/lib/active_support/dependencies.rb:495:in `require' | |
from /Users/tsaleh/code/mgs/config/../vendor/plugins/rspec-rails/lib/spec/rails/extensions/spec/example/configuration.rb:1 | |
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require' | |
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require' | |
from /Users/tsaleh/code/mgs/config/../vendo |
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
[tsaleh@tardis:~/code/mgs master] rake | |
(in /Users/tsaleh/code/mgs) | |
rake aborted! | |
no such file to load -- spec/translator | |
/Users/tsaleh/code/mgs/rakefile:10 | |
(See full trace by running task with --trace) |
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
[tsaleh@tardis:~/code/mgs master ∴ ] rake spec | |
(in /Users/tsaleh/code/mgs) | |
....F................FP..P............ | |
Pending: | |
BackgroundHelper with fixtures loaded seller_reminder_emails should call PostSaleMailer with result (Not Yet Implemented) | |
BackgroundHelper with fixtures loaded buyer_reminder_emails should call PostSaleMailer with result (Not Yet Implemented) | |
1) | |
ActiveRecord::RecordNotFound in 'User with fixtures loaded should be able to find all sellers who have payments pending' |
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
[tsaleh@tardis:~/code/thoughtbot-hoptoad master] git ql origin/production...HEAD | |
9da20b57ad4e49c9c92dd943ce686efc7056cd84 191: flatten whitespace in error messages - Joe Ferris | |
a50b71e86e11f27f184a46f1cd674f1ea686f5ce 307: fixed the free trial period after fixing a failed credit card - Joe Ferris | |
40f7ff98dc351a71fa39204191712569c2556a8a 354: normalize backtraces in xml output - Joe Ferris | |
f0e2cc506c742c7fbffe3405d879fec7825f8d6e 307: changed Subscription#remote_update to delete and recreate unpaid subscriptions - Joe Ferris | |
08ffdf7be9d107f2ddd87f9cc64bcd9610bcdba6 307: added an #unpaid? method to accounts so we can find unpaid accounts based on their receipts - Joe Ferris | |
efc35750f28a196cae0f1d0b6176e6042ec2d16a 353: fixed deploy dates being formatted incorrectly - Joe Ferris | |
22a691df8335774a8ea58d482342f53f3829a84e Updated ANNOUNCER (face-melting guitar solo) - Joe Ferris | |
9ad7a5ddaeeb730d6e3714301a4eca260172c629 Merge branch 'master' of [email protected]:thoughtbot/hoptoad - Tammer Saleh | |
79e7a42b416af8e649ef189 |
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
-- assume_migrated_upto_version(20090410205156) | |
-> 0.0020s | |
** Invoke sample_accounts:create (first_time) | |
** Invoke environment | |
** Execute sample_accounts:create | |
Loading data... | |
** Invoke spec:db:fixtures:load (first_time) | |
** Invoke environment | |
** Execute spec:db:fixtures:load | |
rake aborted! |