Sha256: f202733c72ee5970d165baefadcff208bba473de6e98e79f9a984682cc815823

Contents?: true

Size: 602 Bytes

Versions: 1

Compression:

Stored size: 602 Bytes

Contents

require 'timespan/mongoid/models/time_period'

class Account
  include Mongoid::Document
  include Mongoid::Timespanned

  field :period, :type => ::Timespan, :between => true

  timespan_methods :period

  embeds_one :time_period
  timespan_container_delegates :time_period, :dates, :all#:start, :end

  def self.create_it! duration
    acc = self.new period: ::Timespan.new(duration: duration), time_period: ::TimePeriod.new
    acc.time_period.dates_duration = 1.day
    acc
  end

  def self.between from, to
    Account.where(:'period.from'.gt => from.to_i, :'period.to'.lte => to.to_i)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
timespan-0.4.4 spec/timespan/mongoid/models/account_3x.rb