Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2014
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.17 KB | None | 0 0
  1. class T
  2.   private
  3.   def self.time
  4.     @time = Time.now
  5.   end
  6.  
  7.   public
  8.   def self.epoch
  9.     time.to_i
  10.   end
  11.  
  12.   public
  13.   def self.iso
  14.     time.iso8601
  15.   end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement