class Timetrack::Transform::UnassociatedTime

Intermediate time representation before it's been associated with a date

Public Instance Methods

to_time(date) click to toggle source

This method smells of :reek:FeatureEnvy

# File lib/timetrack/transform.rb, line 40
def to_time(date)
  Time.new date.year, date.month, date.day, hour, minute
end