Skip to content

Instantly share code, notes, and snippets.

View J3RN's full-sized avatar
💼
Seeking a new job

Jonathan Arnett J3RN

💼
Seeking a new job
View GitHub Profile
@J3RN
J3RN / contractions.txt
Last active August 31, 2015 20:19
List of Common English Contractions
ain't
aren't
can't
could've
couldn't
couldn't've
didn't
doesn't
don't
hadn't
@J3RN
J3RN / deploy.rake
Last active February 26, 2020 16:34 — forked from njvitto/deploy.rake
# Deploy and rollback on Heroku in staging and production
task :deploy_staging => ['deploy:set_staging_app',
'deploy:push',
'deploy:migrate',
'deploy:restart']
task :deploy_production => ['deploy:set_production_app',
'deploy:push',
'deploy:migrate',
'deploy:post_deploy',
'deploy:restart']