Skip to content

Instantly share code, notes, and snippets.

Snapshot
logout -> Login Page
summary -> Summary
Reports*
students -> Students
standards -> Standards
Summary*
require 'English'
namespace :db do # rubocop:disable Metrics/BlockLength
task :prevent_disparate_pg_dump_versions => :environment do
allowed_pg_dump_version = '9.6.10'.freeze
`pg_dump --version`
pg_dump_exit_status = $CHILD_STATUS.exitstatus
locally_installed_version = `pg_dump --version`.chomp[/(\d.*)/,1] rescue nil