Skip to content

Instantly share code, notes, and snippets.

@barnes7td
Created March 30, 2015 16:08
Show Gist options
  • Save barnes7td/56438d32c853bc78dcf2 to your computer and use it in GitHub Desktop.
Save barnes7td/56438d32c853bc78dcf2 to your computer and use it in GitHub Desktop.
Days Left in Rails (with a 7 day time frame)
# For Blocitoff items
class Item < ActiveRecord::Base
belongs_to :list
def days_to_complete
7.days
end
def due_date
created_at.to_date + days_to_complete
end
def days_left
(due_date - DateTime.now.to_date).to_i
end
end
# ItemsHelper
module ItemsHelper
def remaining_time(days_left)
if days_left > 1
"#{days_left} days"
elsif days_left == 0
"Due Today"
else
"Overdue!"
end
end
end
# In the view
<%= remaining_time(item.days_left) %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment