Flowdock
civil_from_format(utc_or_local, year, month=1, day=1, hour=0, min=0, sec=0) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/core_ext/date_time/conversions.rb, line 77
  def self.civil_from_format(utc_or_local, year, month=1, day=1, hour=0, min=0, sec=0)
    offset = utc_or_local.to_sym == :local ? local_offset : 0
    civil(year, month, day, hour, min, sec, offset)
  end
Register or log in to add new notes.