Skip to content

Instantly share code, notes, and snippets.

@Roman2K
Forked from ezmobius/gist:77335
Created March 11, 2009 13:14
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 Roman2K/77462 to your computer and use it in GitHub Desktop.
Save Roman2K/77462 to your computer and use it in GitHub Desktop.
def on_time_value
attendances.inject(0) do |sum, attendance|
sum + (attendance.late? ? 0 : 5)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment