Skip to content

Instantly share code, notes, and snippets.

@jspc
Created November 1, 2016 10:50
Show Gist options
  • Save jspc/dc392ba49433cf0cb47abba6ce5ea13b to your computer and use it in GitHub Desktop.
Save jspc/dc392ba49433cf0cb47abba6ce5ea13b to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
#
require 'active_support'
require 'active_support/core_ext'
quitting_time = Time.parse('2016-11-11T17:00:00Z')
quitting_seconds = (quitting_time - Time.now).to_i
if quitting_seconds > 0
puts quitting_seconds
else
puts "None! You're done!"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment