lexical_uuid

Version, currently master branch1 version
  • master branchlatestJun 9, 2018

github.com/crash2burn/lexical_uuid.cr

a port of Ruby's lexical_uuid

0 stars
0 dependents
License: MIT

Installation

# Add this to your shard.yml
dependencies:
  lexical_uuid:
    github: crash2burn/lexical_uuid.cr
    branch: master

master is a branch, not a release, so this tracks it rather than pinning a version.

Then run:

shards install

shard.yml

Crystal
0.24.2
License
MIT
Author
crash2burn

Dependencies

Runtime Dependencies

README

lexical_uuid.cr

This is a port of the ruby library lexical_uuid. It provides a way to go to and from ORDERED v1 UUIDS.

Installation

Add this to your application's shard.yml:

dependencies:
  lexical_uuid:
    github: crash2burn/lexical_uuid.cr

Usage

require "lexical_uuid"

uuid = LexicalUUID::UUID.new
puts uuid.to_guid #=> "00056e19-aa1e-2c81-33b7-7ccf993414bd"

from_bytes = LexicalUUID::UUID.new(uuid.to_bytes)
puts from_bytes.to_guid #=> "00056e19-aa1e-2c81-33b7-7ccf993414bd"

from_guid = LexicalUUID::UUID.new(uuid.to_guid)
puts from_guid.to_guid #=> "00056e19-aa1e-2c81-33b7-7ccf993414bd"

Contributing

  1. Fork it ( https://github.com/crash2burn/lexical_uuid.cr/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Thanks

Contributors