I hereby claim:
- I am thabotitus on github.
- I am thabotitus (https://keybase.io/thabotitus) on keybase.
- I have a public key ASBl679dxFWup_TP_hsaZoS_h6FBslpwLhEBPI0NnDavZgo
To claim this, I am signing this object:
# frozen_string_literal: true | |
require 'rubygems/package' | |
require 'zlib' | |
namespace :maintenance do | |
desc 'Restore local with remote backup' | |
task restore_local: :environment do | |
lambda do | |
return unless Rails.env.development? |
I hereby claim:
To claim this, I am signing this object:
<!doctype html> | |
<html class="no-js" lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title>Griffin UI | Grid</title> | |
<meta name="description" content=""> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> |
it('returns true when a new date is the future', function() { | |
var tomorrow = new Date(); tomorrow.setDate(tomorrow.getDate() + 1); | |
expect(self.disbursement_dates_valid(tomorrow)).toBe(true); | |
}); |