Sha256: 9c8cf4beec80b048cbdee3b3feacd5720ce6074560ab6872c597dd5de1a5e373

Contents?: true

Size: 959 Bytes

Versions: 5

Compression:

Stored size: 959 Bytes

Contents

require 'date'

module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module Time #:nodoc:
      # Getting times in different convenient string representations and other objects
      module Conversions
        def self.append_features(klass)
          super
          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)
          case format
            when :default then to_default_s
            when :db      then strftime("%Y-%m-%d %H:%M:%S")
            when :short   then strftime("%e %b %H:%M").strip
            when :long    then strftime("%B %e, %Y %H:%M").strip
          end
        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
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
activesupport-1.0.4 lib/active_support/core_ext/time/conversions.rb
activesupport-1.0.0 lib/active_support/core_ext/time/conversions.rb
activesupport-1.0.1 lib/active_support/core_ext/time/conversions.rb
activesupport-1.0.2 lib/active_support/core_ext/time/conversions.rb
activesupport-1.0.3 lib/active_support/core_ext/time/conversions.rb