Skip to content

Instantly share code, notes, and snippets.

/example2.rb Secret

Created February 9, 2016 12:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/6bcf865715534d7e8a6c to your computer and use it in GitHub Desktop.
Save anonymous/6bcf865715534d7e8a6c to your computer and use it in GitHub Desktop.
<% still_open_1_days = open_tickets.where(created_at: (Time.now - 24.hours)..(Time.now )) %>
<% still_open_2_days = open_tickets.where(created_at: (Time.now - 48.hours)..Time.now) %>
<% still_open_3_days = open_tickets.where(created_at: (Time.now - 72.hours)..Time.now) %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment