Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
1answer
1k views

Can using Chronic impair your sense of time?

Haha.. I'm using Chronic to parse the time users add in the Calendar. Where the code works and implements the right time, the end result is that, IF a user adds a time, then it has no date, and ...
2
votes
2answers
103 views

Chronic parsing of month/day

I am using Chronic to parse dates and it is parsing the string '8/15' as August 16, 2015. Any ideas on how I could get Chronic to recognize 8/15 as August 15, current year? Here is the test code: ...
1
vote
1answer
76 views

Rubygems Chronic cannot parse “2010-09-12 3:12pm” but can parse “2010-09-12 3pm” or “last monday 3:12pm”?

It seems strange that "2010--9-12 3:12pm" is a weak spot of Chronic Rubygem? Is there a way to make it work? (or another gem that can do it?) I also hope to find a parser that can handle 2010-09-12 ...
1
vote
1answer
582 views

Chronic (Ruby NLP date/time parser) for python?

Does anyone know of a library like chronic but for python? Thanks!
0
votes
0answers
38 views

Is there a RubyGem for parsing store hours?

Are there any ruby gems to parse and standardize store hours? I've seen Chronic, but I don't think it'll work for this specific use case. For example, how would you parse Mon-Sun 11am-10pm or Hours ...
0
votes
1answer
37 views

Using Ruby Chronic To Calculate Offset Of Date

I use chronic to return parsed date objects like so: last_pay_date = Date.parse(Chronic.parse('2011-11-04').strftime("%Y-%m-%d")) two_weeks_ago = Date.parse(Chronic.parse("two weeks ...
0
votes
1answer
52 views

Using jQuery datepicker with Chronic

I'm trying to get a nice combination working for the strengths of the jQuery datepicker, and Chronic date parser for Ruby on Rails. The jQuery UI date picker is useful for selecting a date visually. ...
0
votes
0answers
59 views

Issue using chronic for a rails application

I am trying am creating a rails application that uses the chronic gem for natural language processing of date strings. However I am running into an issue where all of the time that are returned are ...
0
votes
2answers
386 views

Chronic parsing Twitter dates to integer

Once again I am struggling with date formatting in Rails. I am trying to compare a date from ActiveRecord to the date a tweet was created in a cron rake but I am getting errors that I don not ...
0
votes
1answer
197 views

How to use Chronic to parse dates in a datetime text_field

I'm trying to get a text field that my users can enter in something that is parsable by the Chronic gem. Here is my model file: require 'chronic' class Event < ActiveRecord::Base belongs_to ...
0
votes
1answer
330 views

rails — parse military time into AM/PM, using chronic?

I've been using Chronic, the natural language parser and its awesome. The problem I'm running into now is I cant parse the military time its give me back in to some form of AM/PM time that would be ...
0
votes
1answer
2k views

Problems installing rdoc, irb, bluecloth, chronic on fedora 12

What do these errors mean? [root@localhost config]# gem install bluecloth Building native extensions. This could take a while... ERROR: Error installing bluecloth: ERROR: Failed to build gem ...
0
votes
2answers
361 views

does chronic have any options of date format it parses? (ruby)

I need to tell chronic that the format of date is day-month-year is that possible? The data I pass to chronic could also be words today/yesterday/2 days ago. Currently chronic gives me 2 Dec 2010 ...
0
votes
1answer
262 views

How can I use the Chronic natural language date/time parser to parse “12:00” as 12:00 PM?

I am using the ruby gem "Chronic" to parse four digit strings as DateTime objects. I am using time in military format (ie: "0800") which seems from the documentaion to be a valid format. In most ...
0
votes
1answer
658 views

Problems with RSpec and Chronic

I'm trying to use Chronic inside my non-rails project. When I try to get the specs with 'spec' I get the following error: $ spec spec/parsers/parser_english_spec.rb ...