2
votes
1answer
56 views

Using DateTime method in ruby

I'm developing an application using Visual Ruby. In that I'm fetching a date from a dropdown like below: check_to_in_1 = @builder.get_object("cellrenderertext7") then I split this date using the ...
-1
votes
1answer
48 views

How do I use the DateTime class?

Can someone tell me why I can sometimes use the DateTime class when a gem I use returns a DateTime object? When I look it up in the documentation I don't see it listed under classes. Do I need to ...
0
votes
2answers
57 views

Ruby: How to extract an hour (or day) from a date-time string

I'm pulling date-time strings from a large CSV file, which look like this: "11/19/2008 21:56" I'd like to extract the hour only, so I can build a histogram of all the hours to find the most ...
1
vote
2answers
45 views

Rails - duration of time in days, months and years

Is there a Rails helper or other Ruby method for taking a DateTime object and translating into something like? "13 days" (if under a month) "3 months" (if under a year) "1 year, 3 months" I'm ...
1
vote
1answer
45 views

Why is Time.beginning_of_day not working in my controller?

I recently moved some code from my seeds.rb into my controller. In seeds.rb the code works. # for each day create the time slots. start_time = Time.beginning_of_day end_time = start_time.end_of_day ...
-1
votes
1answer
20 views

ruby parsing datetime %Y%m%d%H%M%S

I have a string like this: "20130429130501" (It is date and time with chomped UTC zone info (.0Z); it can be represented like %Y%m%d%H%M%S). I was trying DateTime.parse and DateTime.strptime without ...
0
votes
2answers
59 views

Undefined method `strftime' for nil:NilClass

I have a variable: @delivery_time. When i do this o.delivery_time.strftime("%H:%M:%S") It gives undefined method `strftime' for nil:NilClass And when i do this: debug o.delivery_time It ...
0
votes
1answer
59 views

How to do a simple `Date.today` in my Rails console

When I execute the command Date.today in my rails command, I get the following error: I can't do a simple Date.today in my Rails console ruby-1.9.2-p180 :026 > >> require 'date' => ...
0
votes
1answer
26 views

what is the range of the Ruby Date or DateTime object?

what is the earliest and latest date that can be represented by a Ruby Date or DateTime object? More specifically is the range greater or less than that of a Javascript Date object (1970 +/- 285,616 ...
2
votes
2answers
46 views

Finding aggregate of time from different instances

I have a model called WorkInterval which records contain basically: start_date, end_date I would like to be able to get all the WorkIntervals for a particular Task (I know how to deal with the ...
1
vote
2answers
36 views

Datetime to utc format

I have this DateTime format: var1 = 2014-06-10T18:49:59+00:00 and I want convert to this format: var2 = 2014-06-10 18:49:59 UTC Thanks!
0
votes
2answers
40 views

string in ddmmyyyy format to to date

I have a folder that contains a bunch of folders all with the naming convention of mmddyyyy (for example 04102013, 04092013, etc.). I have a text file that contains all these paths and have ...
0
votes
1answer
81 views

How to create a Ruby DateTime in a specific time zone for a Rails app?

I have users entering in dates in a Ruby on Rails website. I parse the dates into a DateTime object with something like: date = DateTime.new(params[:year].to_i, params[:month].to_i, ...
0
votes
1answer
54 views

DateTime.parse fails after working 8 times in Jumpstart Labs' Event Manager

I'm doing Jumpstart Lab's Event Manager problem and have gotten up to the time of day problem. The recommended method #strparse was a complete non-starter giving me this problem on the first input, so ...
0
votes
1answer
38 views

query by date vs query by time

I assume that application code should store time in database always as UTC ( punch me if I am wrong) Now lets say I want to query everything between 23-mar-2013 to 24-mar-2013 . Should I create a ...
1
vote
4answers
75 views

How to parse a date without a year in Ruby

I'm trying to parse a date in ruby on rails so I can get the month and day out of it. DateTime.parse("07/09") // Works DateTime.parse("02/07/1975") // Works DateTime.parse("08/26/1983") // Fails ...
1
vote
2answers
58 views

How to be sure that Date.today is in Pacific Time Zone?

I am tracking user activity: def track UserActivityTracker.new(date: Date.today.to_s).track end #application.rb config.time_zone = 'UTC' How to be sure that days are tracked in the Pacific Time ...
1
vote
1answer
48 views

How to get day of a ruby Date Object [duplicate]

Say I have created a Data object like this. semester_start_date = Date.new(2013,1,15) Now how I can find if semester_start_date.day == 'Thursday' or any other day for that matter? Thanks.
2
votes
1answer
55 views

How Do I Convert a Month Name into a Month Integer in Ruby?

If I start with a string: "March", how can I get the integer for that month?
0
votes
2answers
90 views

Distance_of_time_in_words

I am using distance_of_time_in_words with the expanded gem dotiw as follows: <%= distance_of_time_in_words(@client.report_missing_after.days, Date.today, false, except: ["hours","minutes"]) %> ...
-1
votes
2answers
40 views

Ruby Determine Season (Fall, Winter, Spring or Summer)

I am working on a script that is supposed to determine the "season" of the year based on date ranges: For Example: January 1 - April 1: Winter April 2 - June 30: Spring July 1 - September 31: Summer ...
0
votes
1answer
40 views

Converting to Date time

Is there an easy inbuilt method in ruby which converts "20130313T113000Z" to a ruby Date format?
0
votes
3answers
117 views

Convert 24 integer to 12 hour with am/pm

I'm using ruby. I'm trying to figure out how to convert the following.. 14 becomes 2 pm 0 becomes 12 am 23 becomes 11 pm Thanks!
0
votes
1answer
36 views

unable to set start date of the date_select tag as the current date in rails

How can I set the start date of the date_select tag as the current date ? I know about start_year() But I want year, month and date to start from the current year, month and date in my html form.
0
votes
1answer
36 views

Strange DateTime format

Please help me to figure out how to parse this strange date-time string with ruby: "TimeStampUtc": "\/Date(1328696521000+0000)\/ "Date"=>"/Date(1365703200000+0100)/
0
votes
1answer
55 views

Find weekday of date

I need to find the weekday of the 28th day of the year and month given. For test data: 1999-5 1998-6 I expect: MONDAY TUESDAY Below is my solution: date = [] 2.times {date << ...
2
votes
0answers
25 views

Rails on date object values returned by date.end_of_day.to_datetime and date.to_datetime.end_of_day when compared returns false

ruby 1.9.3dev (2011-09-23 revision 33323) [i686-linux] Rails 3.0.20 Recently why working on a project on RSpecs related to DateTime on Rails I found out that on a given date the values emitted by ...
0
votes
2answers
61 views

getting the current date in Rails Model

Im trying to get the current date inside my rails model like this: Inside Photo.rb Paperclip.interpolates :prefix do |attachment, style| :today_date => Date.today.to_s ...
-1
votes
2answers
199 views

convert iso-8601 datetime to utc time rails

I have an ISO-8601 datetime stamp, and need to convert it into local time in GMT. What is the way to do it in Ruby on Rails? I have '1325233011', and need to convert it into local time in GMT ...
2
votes
1answer
60 views

Why does Ruby's stdlib have a DateTime class?

A little while ago I dug deep into the differences between Ruby's time-like classes. After asking around, I've come to the conclusion that there is no good reason to use DateTime, ever. This question ...
1
vote
1answer
48 views

How to catch the all objects with date 5 days from today?

I am trying to do this using this scope: >> Job.last.application_date Job Load (0.4ms) SELECT "jobs".* FROM "jobs" ORDER BY created_at ASC LIMIT 1 => Wed, 13 Feb 2013 >> Date.today ...
0
votes
2answers
53 views

ActiveRecord Relation error when trying to display events for only today in PG

What I am trying to do is show just the events that are today- @event = Events.where('EXTRACT(DAY FROM start) = ?', Date.today) All I can get to show up is ...
2
votes
1answer
209 views

How to determine the time zone (EST,PST,MST,CST,AKST,HST) given a city,state in Ruby?

So I wrote a Ruby script such that given a city,state such as New York, NY you can get a time zone string such as "America/New York" returned. I used the geocoder and timezone gems. But is there an ...
0
votes
2answers
39 views

Converting string to ruby datetime

I have the following string as a date Thu 17 Jan I want to convert this to a ruby date time object (to save in the database). I have tried chronic, but without luck. Can someone help me out, ...
0
votes
2answers
112 views

Time.zone.parse not converting correctly

In my development: str = "Sat Jan 12 2013 14:00:00 GMT-0500" Time.zone.parse(str).utc Outputs: 2013-01-12 19:00:00 UTC In my production (appfog): 2013-01-12 14:00:00 UTC How can I make it not ...
4
votes
3answers
85 views

Parsing a date that can be in several formats in python

I would like to parse a date that can come in several formats, that I know beforehand. If I could not parse, I return nil. In ruby, I do like this: DATE_FORMATS = ['%m/%d/%Y %I:%M:%S %p', '%Y/%m/%d ...
0
votes
1answer
38 views

sqlite3/data_mapper always saves time as 00:00:00 when using rspec only

I have a peculiar issue involving saving time using data_mapper and sqlite3 and rspec if I run the spec below I get this failure report # expected: 2013-01-04 07:30:00 +1100 # got: ...
0
votes
1answer
44 views

What is the correct way to compare times in Ruby?

The following example is confusing me. Why does the comparison return false? require 'active_support/time' time1 = Time.new.utc.end_of_day # 2013-01-09 23:59:59 UTC time2 = Time.parse(time1.to_s) ...
1
vote
3answers
124 views

Get random time objects between certain hours in Rails

I would want a method that: def time_between(from, to) *** end time_between 10.am.of_today, 3.pm.of_today # => 1pm Time object time_between 10.am.of_today, 3.pm.of_today # => 3pm Time object ...
4
votes
3answers
758 views

Millisecond resolution of DateTime in Ruby

I have a string like 2012-01-01T01:02:03.456 that I am storing in a Postgres database TIMESTAMP using ActiveRecord. Unfortunately, Ruby seems to chop off the milliseconds: ruby-1.9.3-rc1 :078 > ...
1
vote
2answers
335 views

Convert standard rails / ruby time to American format - dates getting mixed up

I'm trying to convert the YYYY-MM-DD format in my forms and show views to MM/DD/YYYY - which is a pretty standard American date format. Not sure how to go about this - I thought that calling ...
0
votes
1answer
143 views

Parse localized DateTime before save to database in ruby or rails

Is it possible to parse a localized DateTime string back to a proper DateTime using native Ruby or Rails methods? I looked in i18n where I would expect this to be, since it holds the formats and ...
0
votes
1answer
153 views

Rails change default timezone

I'm trying to change default timezone in Rails 3.2.8 app to GMT+04:00, but I don't know how to do it. The following solutions do not work for me: config.time_zone = 'Moscow' config.time_zone = ...
1
vote
2answers
67 views

Is there a ruby method to make dates and times more readable?

I'm using an API where the date returned looks something like: 2012-11-30 12:54:59 -0800. I was wondering if there is a Ruby method that can take that as input and return "Today", for example. Other ...
-1
votes
2answers
84 views

DateTime serialization and deserialization

I'd like to serialize a Ruby DateTime object to json. Unfortunately, my approach is not symetrical: require 'date' date = DateTime.now DateTime.parse(date.to_s) == date => false I could use ...
3
votes
1answer
169 views

Rails timezone differences between Time and DateTime

I have the timezone set. config.time_zone = 'Mountain Time (US & Canada)' Creating a Christmas event from the console... c = Event.new(:title => "Christmas") using Time: c.start = ...
0
votes
1answer
254 views

Sinatra/Ruby time zone troubles between development & production

My Sinatra app is creating a simple object and persisting it to Postgres: post '/' do event = Event.new(params) event.created_at = Time.now.utc event.date = next_date(params[:dayofweek], ...
0
votes
1answer
79 views

What is a clean and idiomatic way to insert missing minutes in an array in Ruby?

Consider an array of datetimes: 2010-07-17 16:09:00 -0700 2010-07-17 16:10:00 -0700 2010-07-17 16:12:00 -0700 2010-07-17 17:44:00 -0700 2010-07-18 02:12:00 -0700 What is a clean and idiomatic way ...
0
votes
2answers
42 views

How to check if the object was created within this month

I have a task to find out if an object is created within this month or not. I tried a lot to resolve this. I used 1.month, since(-1), etc. But still I am not on a right track to proceed with these ...
0
votes
2answers
66 views

rails date_select title as a value

I am using date_select like so <%= f.label :birthday %> <%= f.date_select :birthday , :order => [:month, :day, :year] ,:start_year => 1900, :end_year => Time.now.year-10 %> I ...

1 2 3 4 5 6