Sha256: e2f2afcc59d76298fb3e5a89c5d52df702c0c1ef67fdd6a8e70317045344d73a

Contents?: true

Size: 1.17 KB

Versions: 56

Compression:

Stored size: 1.17 KB

Contents

module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module Time #:nodoc:
      # Getting times in different convenient string representations and other objects
      module Conversions
        DATE_FORMATS = {
          :db     => "%Y-%m-%d %H:%M:%S",
          :time   => "%H:%M",
          :short  => "%d %b %H:%M",
          :long   => "%B %d, %Y %H:%M",
          :rfc822 => "%a, %d %b %Y %H:%M:%S %z"
        }

        def self.included(klass)
          klass.send(:alias_method, :to_default_s, :to_s)
          klass.send(:alias_method, :to_s, :to_formatted_s)
        end
        
        def to_formatted_s(format = :default)
          DATE_FORMATS[format] ? strftime(DATE_FORMATS[format]).strip : to_default_s          
        end

        def to_date
          ::Date.new(year, month, day)
        end

        # To be able to keep Dates and Times interchangeable on conversions
        def to_time
          self
        end
        
        # converts to a Ruby DateTime instance; preserves utc offset
        def to_datetime
          ::DateTime.civil(year, month, day, hour, min, sec, Rational(utc_offset, 86400), 0)
        end        
      end
    end
  end
end

Version data entries

56 entries across 56 versions & 1 rubygems

Version Path
backlog-0.0.0 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.0.1 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.0.2 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.0.5 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.0.4 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.1.0 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.1.1 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.1.2 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.2.0 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.2.1 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.3.0 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.3.1 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.3.3 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.3.2 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.3.4 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.3.5 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.3.6 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.3.7 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.3.8 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
backlog-0.3.9 vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb