Class: Array

Inherits:
Object
  • Object
show all
Defined in:
lib/plansheet/project.rb

Overview

Needed for Project#time_estimate, would be much happier not patching Array

Instance Method Summary collapse

Instance Method Details

#nil_if_emptyObject



11
12
13
# File 'lib/plansheet/project.rb', line 11

def nil_if_empty
  count.zero? ? nil : self
end