Skip to content

Instantly share code, notes, and snippets.

@mru2
Last active August 29, 2015 14:00
Show Gist options
  • Save mru2/11034182 to your computer and use it in GitHub Desktop.
Save mru2/11034182 to your computer and use it in GitHub Desktop.
# string => unique
def transaction_id(reference)
"#{Time.now.to_i}#{Random.rand(1000)}|#{reference}"
end
# unique => string
def reference(transaction_id)
transaction_id.match(/\d+|(.*)/)[1]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment