lib/payu/timestamp.rb

Summary

Maintainability
A
0 mins
Test Coverage
# encoding: utf-8

module Payu
  class Timestamp
    def self.generate
      (Time.now.to_f * 1000).to_i
    end
  end
end