Sha256: d28901fb4911c81ecdad024affa660925dccc80e2f67655bde46f0c28028f701

Contents?: true

Size: 444 Bytes

Versions: 38

Compression:

Stored size: 444 Bytes

Contents

require 'active_support/time'

class Time
  def to_json(*a)
    %("#{as_json}")
  end
  
  def as_json(*args)
    getutc.strftime("%Y/%m/%d %H:%M:%S +0000")
  end
  
  def self.json_create string
    return nil if string.nil?
    d = DateTime.parse(string.to_s).new_offset
    self.utc(d.year, d.month, d.day, d.hour, d.min, d.sec).in_time_zone
  end
end

ActiveSupport::TimeWithZone.class_eval do
  def as_json(*args)
    utc.as_json
  end
end

Version data entries

38 entries across 38 versions & 2 rubygems

Version Path
couch_potato-1.1.4 lib/core_ext/time.rb
couch_potato-1.1.2 lib/core_ext/time.rb
couch_potato-1.1.1 lib/core_ext/time.rb
couch_potato-1.1.0 lib/core_ext/time.rb
couch_potato-1.0.1 lib/core_ext/time.rb
couch_potato-1.0.0 lib/core_ext/time.rb
couch_potato-0.7.1 lib/core_ext/time.rb
couch_potato-0.7.0 lib/core_ext/time.rb
couch_potato-0.7.0.pre.1 lib/core_ext/time.rb
couch_potato-0.6.0 lib/core_ext/time.rb
couch_potato-0.5.7 lib/core_ext/time.rb
couch_potato-rails2-0.5.6 lib/core_ext/time.rb
couch_potato-0.5.6 lib/core_ext/time.rb
couch_potato-0.5.5 lib/core_ext/time.rb
couch_potato-0.5.4 lib/core_ext/time.rb
couch_potato-0.5.3 lib/core_ext/time.rb
couch_potato-0.5.2 lib/core_ext/time.rb
couch_potato-0.5.1 lib/core_ext/time.rb