Class: Time

Inherits:
Object
  • Object
show all
Defined in:
lib/dm-filemaker-adapter/core_patches.rb

Instance Method Summary collapse

Instance Method Details

#_to_fmObject



2
3
4
5
6
# File 'lib/dm-filemaker-adapter/core_patches.rb', line 2

def _to_fm
  d = strftime('%m/%d/%Y') #unless Date.today == Date.parse(self.to_s)
  t = strftime('%T')
  d ? "#{d} #{t}" : t
end