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
| $.fn.vAlign = -> | |
| @each (i) -> | |
| ah = $(this).height() | |
| ph = $(this).parent().height() | |
| mh = (ph - ah) / 2 | |
| $(this).css "margin-top", mh |
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
| git update-ref refs/heroku_san/deploy HEAD | |
| git push git@heroku.com:tedcity2-staging.git --force refs/heroku_san/deploy:refs/heads/master | |
| Counting objects: 84, done. | |
| Delta compression using up to 4 threads. | |
| Compressing objects: 100% (60/60), done. | |
| Writing objects: 100% (60/60), 7.02 KiB, done. | |
| Total 60 (delta 44), reused 0 (delta 0) | |
| -----> Heroku receiving push | |
| -----> Ruby/Rails app detected |
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
| guard 'spork', :cucumber_env => { 'RAILS_ENV' => 'test' }, :rspec_env => { 'RAILS_ENV' => 'test' } do | |
| watch('config/application.rb') | |
| watch('config/environment.rb') | |
| watch(%r{^config/environments/.+\.rb$}) | |
| watch(%r{^config/initializers/.+\.rb$}) | |
| watch('Gemfile') | |
| watch('Gemfile.lock') | |
| watch('spec/spec_helper.rb') { :rspec } | |
| watch('test/test_helper.rb') { :test_unit } | |
| watch(%r{features/support/}) { :cucumber } |
NewerOlder