Version: 1.9.7
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
| # Original source: https://gist.github.com/hopsoft/56ba6f55fe48ad7f8b90 | |
| # Merged with: https://gist.github.com/kofronpi/37130f5ed670465b1fe2d170f754f8c6 | |
| namespace :db do | |
| desc 'Dumps the database to backups' | |
| task dump: :environment do | |
| dump_fmt = ensure_format(ENV['format']) | |
| dump_sfx = suffix_for_format(dump_fmt) | |
| backup_dir = backup_directory(Rails.env, create: true) | |
| full_path = nil | |
| cmd = nil |
| /** | |
| * @file | |
| * Simulating user actions with CasperJS. This script explores the ability to | |
| * use Casper for navigation just like a user would: clicking the page and | |
| * entering text to submit a form. This script accompanies a blog post from | |
| * Four Kitchens: | |
| * | |
| * @see http://fourword.fourkitchens.com/article/simulate-user-actions-casperjs | |
| */ |
| #!/bin/bash | |
| sudo apt-get install git | |
| sudo cp john /usr/bin/ | |
| sudo chmod 777 /usr/bin/john |