Skip to content

Instantly share code, notes, and snippets.

@jeromenerf
jeromenerf / useless.diff
Last active November 8, 2017 15:25
uselessgaps
diff --git a/Spectacle/SpectacleConstants.h b/Spectacle/SpectacleConstants.h
index 7ffec1d..b605b83 100644
--- a/Spectacle/SpectacleConstants.h
+++ b/Spectacle/SpectacleConstants.h
@@ -59,7 +59,7 @@ extern const NSInteger SpectacleEscapeKey;
#pragma mark -
extern const CGFloat SpectacleWindowSizeOffset;
-
+extern const CGFloat SpectacleUselessGap;
@njvitto
njvitto / deploy.rake
Created April 11, 2010 16:56 — forked from RSpace/deploy.rake
Rakefile to deploy and rollback to Heroku in two different environments (staging and production) for the same app
#Deploy and rollback on Heroku in staging and production
task :deploy_staging => ['deploy:set_staging_app', 'deploy:push', 'deploy:restart', 'deploy:tag']
task :deploy_production => ['deploy:set_production_app', 'deploy:push', 'deploy:restart', 'deploy:tag']
namespace :deploy do
PRODUCTION_APP = 'YOUR_PRODUCTION_APP_NAME_ON_HEROKU'
STAGING_APP = 'YOUR_STAGING_APP_NAME_ON_HEROKU'
task :staging_migrations => [:set_staging_app, :push, :off, :migrate, :restart, :on, :tag]
task :staging_rollback => [:set_staging_app, :off, :push_previous, :restart, :on]