Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3501586
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T12:52:40+00:00 2026-05-18T12:52:40+00:00

I’m a Java developer who is very new to Ruby so if this question

  • 0

I’m a Java developer who is very new to Ruby so if this question is a little too basic, please go easy on me. 🙂 I’m here to learn if someone can point me in the right direction.

I’m writing an application that deals with times and will need to take time zones into account. I was curious what Ruby offers for dealing with timezones and I found that Rails provides a DateTime class that should do what I need. http://api.rubyonrails.org/classes/DateTime.html#method-i-in_time_zone

However, when I create a DateTime, it doesn’t seem to have the methods I expect. Can someone explain what is going on here? Here is what I’m seeing in irb:

>> dt = DateTime.now
NameError: uninitialized constant DateTime
    from (irb):1
>> require 'rails'
=> true
>> dt = DateTime.now
=> #<DateTime: 212158799144191849/86400000000,-1/4,2299161>
>> dt.respond_to? "in_time_zone"
=> false

Since DateTime isn’t defined until I require rails, I assumed I was using the Rails DateTime but it doesn’t seem to have the methods I’m expecting based on the documentation.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T12:52:41+00:00Added an answer on May 18, 2026 at 12:52 pm

    DateTime is a core class, and part of Date. It is available if you require 'date' in your code; You don’t have to use Rails to access it.

    require 'date'
    
    asdf = DateTime.parse(`date`)
    asdf # => #<DateTime: 2010-12-10T21:41:59-07:00 (212158802519/86400,-7/24,2299161)>
    asdf.class # => DateTime
    asdf.to_s # => "2010-12-10T21:41:59-07:00"
    

    The class you’re after is part of ActiveSupport, which is part of Rails, but you don’t have to load Rails to access it:

    require 'active_support/all'
    asdf.in_time_zone # => Fri, 10 Dec 2010 21:43:42 -0700
    

    or

    require 'active_support/core_ext'
    asdf.in_time_zone # => Fri, 10 Dec 2010 21:59:48 -0700
    

    Ruby’s Time class has good support for timezones also, so you might want to get familiar with it too.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.