module Kalendor::DateList
Public Instance Methods
get_dates(from, upto ;)
click to toggle source
# File lib/kalendor/date_list.rb, line 7 def get_dates from, upto ; self.dates.select { |d| d >= from && d <= upto } ; end