Tagged Questions
0
votes
2answers
30 views
Range operators in Ruby similar to PostgreSQL
Is there a Ruby gem that enables Range calculations similar to what PostgreSQL does? Especially the time-related range functions?
1
vote
2answers
282 views
How do I find breaks in multiple date ranges with Ruby
Let's say I have the following date ranges in Ruby:
Sat, 01 Jan 2011..Tue, 01 Feb 2011
Wed, 05 Jan 2011..Thu, 17 Feb 2011
Wed, 02 Feb 2011..Tue, 01 Mar 2011
Sun, 01 Jan 2012..Thu, ...
0
votes
2answers
214 views
Return date if within date range
I have an object which contains a list of due dates, I am trying to build a system which returns the due date when a specified date is 1 month or less before the due date. It should return the due ...
0
votes
3answers
423 views
Ruby on Rails 3 Check In/Check Out ranges by hour
I'm using Ruby on Rails 3 and I have a "visit" model which stores a check_in and check_out datetime and I need to search through visits in a general date range and count the number of "visitors ...
5
votes
2answers
1k views
Ruby's range step method causes very slow execution?
I've got this block of code:
date_counter = Time.mktime(2011,01,01,00,00,00,"+05:00")
@weeks = Array.new
(date_counter..Time.now).step(1.week) do |week|
logger.debug "WEEK: " + week.inspect
...
2
votes
2answers
758 views
Timestamp comparing in timestamp range?
I currently have 2 timestamp fields in my RubyOnRails database defined as:
starttime:timestamp
endtime:timestamp
I want to write a simple function in my controller which will take the current time ...
1
vote
1answer
108 views
How Do I Find Common Dates in Two Ranges
I have 2 date ranges, start_date1..end_date1 and start_date2..end_date2, is there an easy "ruby" way to find all the dates that are in both ranges?
8
votes
2answers
4k views
How Do I Loop Through a Date Range in Reverse?
I have a date range that I would like to be able to loop through in reverse. Give the following, how would I accomplish this, the standard Range operator doesn't seem t be working properly.
>> ...
3
votes
2answers
477 views
Obtain a date range from a single date
I can do this myself of course, but is there built-in functionality in Ruby, or a library, that would let me do something like this
date = Time.now
sunday = date.week.first_day
saturday = ...