Sha256: fd25b69910ed32420c1cb207e892171c63e60c1e332e7e67db3f6100cad33b97

Contents?: true

Size: 663 Bytes

Versions: 28

Compression:

Stored size: 663 Bytes

Contents

require_dependency "renalware/pathology"

module Renalware
  module Pathology
    # Responsible for converting a collection of observations dates to a range.
    #
    class ObservationDateRange
      def self.build(values)
        # Must add a day to the range to cover observations that occur on the
        # same day after midnight. e.g. if we want observations up to
        # 2010-01-01 then we also want observations with the time stamp
        # 2010-01-01 10:30. If we don't add a day to the range then this
        # observation  will be omitted
        #

        Range.new(values.first, values.last + 1.day) if values.any?
      end
    end
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
renalware-core-2.0.0.pre.beta11 app/models/renalware/pathology/observation_date_range.rb
renalware-core-2.0.0.pre.beta10 app/models/renalware/pathology/observation_date_range.rb
renalware-core-2.0.0.pre.beta9 app/models/renalware/pathology/observation_date_range.rb
renalware-core-2.0.0.pre.beta8 app/models/renalware/pathology/observation_date_range.rb
renalware-core-2.0.0.pre.beta7 app/models/renalware/pathology/observation_date_range.rb
renalware-core-2.0.0.pre.beta6 app/models/renalware/pathology/observation_date_range.rb
renalware-core-2.0.0.pre.beta5 app/models/renalware/pathology/observation_date_range.rb
renalware-core-2.0.0.pre.beta4 app/models/renalware/pathology/observation_date_range.rb