Class: File
- Inherits:
-
Object
- Object
- File
- Defined in:
- lib/time_extentions.rb
Overview
End Snippet
Instance Method Summary collapse
Instance Method Details
#newer_than?(date) ⇒ Boolean
41 42 43 |
# File 'lib/time_extentions.rb', line 41 def newer_than?(date) self.ctime.to_a_datetime > date end |
#older_than?(date) ⇒ Boolean
38 39 40 |
# File 'lib/time_extentions.rb', line 38 def older_than?(date) self.ctime.to_a_datetime < date end |