0
votes
1answer
22 views

Rails Hstore dateTime saving

How do i use datetime values and store and retrieve them using HStore? I am using this: module HstoreAccessor def self.included(base) base.extend(ClassMethods) end module ClassMethods ...
0
votes
2answers
27 views

how to show the time correctly in ruby on rails

I have a function in ruby on rails project. it can create a certain task with task name and due date. after created it will show the due date of a task. When I create a task the task name and due ...
0
votes
0answers
20 views

Time dropdown for best_in_place

I'm trying to add the proper syntax for the best_in_place gem with my code here: <%= Time.at(task.hour).strftime("%I:%M %p") %> I've tried something like <%= best_in_place Time, ...
1
vote
1answer
38 views

DateTime.now not setting timezone in Rails

I have a column called "Archived" in my message table and a button that when pushed will write the current time and date into the db column. Right now I can get it to write the time, however it's in ...
0
votes
1answer
24 views

Time in string format to using strftime

I am trying to change a time of an event I pulled from Facebook which comes in a hash with time as a string. eg: "fbevents" => { "event1" => "2013-04-27T08:00:00-0400" "event2" => ...
3
votes
1answer
64 views

Time zone confusion (1 hour off)

Time.use_zone('Pacific Time (US & Canada)') do p Time.zone.now end I get the following: => Sun, 14 Apr 2013 20:30:53 PDT -07:00 Yet when I do Rails Time Zone Select.... it ...
0
votes
2answers
24 views

Formatting a Field Whenever it's Queried

I have a Rails app that acts as the back-end for the iPhone app. Whenever a record, let's call it message, is created, I format a string coming from the iPhone app into Ruby DateTime that will be ...
0
votes
0answers
22 views

Rails time duration for specified time range only

I'm trying to find a simple way in Rails to calculate the amount of time between two datetime objects - but only count the time if it's within a set time range (eg, 9am - 5:30pm). For example: ...
2
votes
0answers
78 views

How to create a 12 hour (with AM/PM) time select element?

I am using rails 3.2.13. I want to show 12 hours of clock and am/pm also in dropdown. Seems lot of people talking about this but there is no inbuilt solution for the same. time_select("post", ...
1
vote
0answers
42 views

Why is my timezone one hour off?

Running this code... Time.use_zone('Pacific Time (US & Canada)') do p Time.zone.now end I get the following: => Sun, 14 Apr 2013 20:30:53 PDT -07:00 Yet when I do Rails ...
1
vote
1answer
34 views

Rails time duration in database and form

I need to store a time duration in database and I'm not sure how to go about this. I've added a 'duration' column to my table of the type time but I don't know how to let the user fill in what he ...
1
vote
2answers
37 views

Best way to compare this simple ruby/rails Date

I have an object that contains a date timestamp such as time = Sat, 06 Apr 2013 08:00:00 PDT -07:00 I am simply trying to compare the object time, to see if the date matches the day(month, ...
1
vote
1answer
47 views

Word Frequency count in a very inefficient way

This is my code for calculate word frequency word_arr= ["I", "received", "this", "in", "email", "and", "found", "it", "a", "good", "read", "to", "share......", "Yes,", "Dr", "M.", "Bakri", "Musa", ...
0
votes
0answers
50 views

Database in UTC but need to display different time now for different countries

Could someone please help me with my problem. Ive been on it a couple of days now, and just cant get my head around it. So I have an existing database, that contains all times in UTC. Each post in ...
0
votes
2answers
58 views

Get current time with a phone number

I want to write an RoR mobile app which gives me the current time at the country for a given phone number, with its area code. Is there a good api for this?
0
votes
0answers
50 views

Rails - combined_time_select not parsing date correctly

I'm using the combined_time_select gem in my Rails app in order to get a 12-hour AM/PM time picker in a single select box. I have a form for a donation with a select box for the date, which is being ...
0
votes
0answers
58 views

rails Time parser

I have some parser, that give me news from one site. And also I have written new's time create time parser. And the problem is that my parser make it not perfect(with 2 hours earlier) original time ...
0
votes
1answer
79 views

Rails & Postgresql: how to group queries by hour?

How do I group by hour in Postgres & Rails? I've read through quite a few SO answers but I'm getting errors. This works when grouping by date: Model.group("date(updated_at)").count Then I ...
0
votes
2answers
96 views

Turn data from a datetimepicker (human readable) into Time class (machine readable)

Right now I'm using a datetimepicker to make it easy for users to select an exact date/time and present that in a readable format. However, rails does not like that format and can't Time.parse it. ...
-1
votes
2answers
198 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 ...
0
votes
1answer
42 views

right way to handle time between javascript and Rails

When retrieving records via Ajax, I only want the records updated after previous request, instead of all records. I know the query should look like: Post.where("updated_at >= ?", ...
0
votes
1answer
65 views

Scope dates in Ruby: Upcoming jobs which are 'due' between now and seven days?

I'm trying to scope all 'jobs' between now and it's 'due' date if that date is upcoming in the next seven days. I know how to scope based on created_at - but not sure how to go about specific dates. ...
1
vote
2answers
113 views

How do I search between two times?

How do I compare only time values using Rails and ActiveRecord? For instance, looking for all rows that were created after 3:00PM? I tried using Time.parse, however they seem to be expecting a full ...
0
votes
1answer
40 views

Comparing with current time SQL

I'm trying to get a page to display a list of all the records that are valid at the current time, so comparing the start and end time & date to the time at that current moment. This is the code I ...
0
votes
2answers
53 views

Rails UTC displayed date to custom

I'm sending this to my view: <%= @venue.eventdate %> which displays a UTC date time. e.g. 2013-01-10 17:15:00 UTC I found this site for strftime command and created a custom built. I ...
0
votes
1answer
66 views

How to remove minute in TIME Data Type in SQL/Rails App

I've got a form for selecting TIME. I'm using Simple Form and Jquery Timepicker. How do I remove the minute field of the form. So I have two fields for the :mondayopen parameter showing up. One is the ...
1
vote
1answer
128 views

In place editing of Time object

I have an app, which is used to plan work shifts for a number of employees. I have a Shift model, where I store the shiftstart and the shiftend as Time objects. I present the users Shifts on a page ...
0
votes
1answer
47 views

Hour (Minutes) selection for ruby on rails

Hi i have this command on my View (_form.html.erb), when im editing the client shows the hours thats fine, but on the minutes shows the 60 minutes of the hour i need to only to show the 0 minute and ...
3
votes
1answer
165 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
0answers
91 views

rails / heroku Time can't be coerced into Float (TypeError)

I have an app, that works just fine on my machine. But when I push to Heroku I get this error: /app/slug-compiler/lib/utils.rb:66:in `-': Time can't be coerced into Float (TypeError) from ...
0
votes
0answers
51 views

Time Behavior in Rails [duplicate]

Possible Duplicate: UTC time resets to 2000-01-01 (ruby). How do I prevent the time from resetting? In my application.rb, I have: config.time_zone = "Eastern Time (US & Canada)" If, ...
0
votes
1answer
72 views

ruby on rails 3.0 TimeWithZone add hours can't be coerced into Fixnum

I'm getting a really strange error in my code that I'm hoping someone can help me out with. I have a model which has a created_at column and a duration column I have created. The duration is simply an ...
1
vote
1answer
220 views

When should `DateTime.now.utc` vs. `Time.current.utc` be used in Rails?

In Rails, I'm a little confused on the guidance between when to use DateTime.now.utc and Time.current. There seem to be differing opinions inside the framework about which is best, particularly in ...
1
vote
2answers
176 views

Is Rails time broken for midnight?

Let's look at the date: 1.9.2p320 :008 > Date.today => Wed, 03 Oct 2012 1.9.2p320 :009 > Time.now => 2012-10-03 22:32:55 -0400 Now, given that when is midnight? 1.9.2p320 :005 > ...
-1
votes
1answer
105 views

Time slot selection and displaying in rails

Guys please give suggestions on how to get the result as you can see in the pic2 when I give input as in pic1. Please help me, I am new to rails and need your suggestion. Thanks in advance ...
0
votes
2answers
109 views

Rails DateTime Conversion and Time Comparison

I am having a bit of trouble with comparing times in Rails. I want to check to see if an event lies within a window, if it does, then find which, the event or window starts last and which ends first. ...
1
vote
2answers
149 views

Rails shorter “time_ago_in_words”

Is there a different time calculation in rails besides "time_ago_in_words"?? I want to be able to use just 'h' for hours 'd' days 'm' for months... ex. 3d, or 4h, or 5m My code now... <%= ...
2
votes
0answers
60 views

rails reject_if for time fields

sorry for my english, my question is: how can I check empty time fields on reject_if block. Here is a bit of my code. accepts_nested_attributes_for :working_times, :allow_destroy => true, ...
0
votes
3answers
51 views

dealing with 'worked time'

I'm working on an app that will track the worked time from users, and then, generate graphics from this data... Having in mind that they can start any task today and done it tomorrow, I can't save an ...
0
votes
1answer
87 views

How to properly do date logic in Ruby / Rails

I have a need to read a date as a UTC unix timestamp integer. And then use it, do some date calculations on it. I wrote a rails application and a spec that mimicks my environment. ...
1
vote
1answer
113 views

Rails: Loop over every hour between two times

If I define the following: timetogoback = Time.zone.local(2012,8,01,0,0) timeupto = Time.zone.local(2012,9,12,12,0) As two times, how do I then create a loop that iterates over every hour ...
0
votes
3answers
113 views

Generate array of formatted strings from range in Ruby on Rails

I'm dealing with Ruby on Rails application. Just to be educated, I would like to know if it is possible to generate an array of formatted strings; in this particular situation - hours and minutes. ...
0
votes
1answer
65 views

Rails: Clarification (rules-of-thumb?) for Date/Time, to_time and time zones

tl;dr: what are the rules for working with Date, Time & Datetime so I'm assured consistency across my apps? I'm trying to wrap my head around working with Dates & Times & Zones in Rails ...
0
votes
2answers
245 views

Time.zone & in_time_zone display wrong time in views

So I'm getting some inconsistent results from dates in my view when I've set the Time.zone. I'm hoping someone can tell me what is going on. I've got ruby on rails app running on an ubuntu server ...
0
votes
3answers
687 views

Ruby on rails date formatting

I am trying to format my date from my RoR project, though having real issue understanding how this works. In php this is a simple date("format",time()) if i call just the standard time stored within ...
1
vote
1answer
103 views

Trying to get all records that have a timestamp in between two given dates

I have this huge database of records that have been created over the past 5 or so years. I'm thinking it would be cool (and edifying) to try to create some time categories/segments for these records, ...
0
votes
2answers
487 views

Ruby on Rails: Select days/months/years ago search

I'm trying to give the user an option to search on a timescale. I am wanting a drop down menu to display options in a drop down menu like this: Search from: 3 days ago, 1 week ago, 1 month ago, 6 ...
0
votes
1answer
124 views

ActiveRecord Group by statement not converting to Time.zone

I use the query below to give me a count of checkins broken down by day. Checkin.select("date(created_at) as calendar_day, count(*) as total_checkins").where("user_id = ? AND created_at > ?", ...
0
votes
0answers
200 views

Time in zone without DST (summer time). UTC standard time

To satisfy an ancient standard, called EDI mscons, I need all times in my time zone (UTC +1), always standard time (=winter time), never summer time. rails console: $ t = Time.zone.now => Tue, 31 ...
0
votes
0answers
112 views

Rails: Convert end midnight time to MySql time 24:00:00

i have model which saves opening time for place. There are two attributes, begins and ends. Both attributes are defined as Time. Begin time should be 00:00 which is start midnight. Problem is with end ...

1 2 3 4