lib/asana/resource_includes/collection.rb in asana-0.9.3 vs lib/asana/resource_includes/collection.rb in asana-0.10.0
- old
+ new
@@ -34,9 +34,14 @@
else
to_enum
end
end
+ # Public: Returns the last item in the collection.
+ def last
+ @elements.last
+ end
+
# Public: Returns the size of the collection.
def size
to_a.size
end
alias length size