Lazy UUID
Small gem for creating and using UUIDs (universally unique identifier). It has no external dependencies.
Installation
Add this line to your application's Gemfile:
gem 'lazy-uuid'Or to your gemspec:
spec.add_dependency 'lazy-uuid'And then execute:
$ bundle
Or install it yourself as:
$ gem install lazy-uuid
Usage
Script Usage
Include the Uuid class by doing:
require 'lazy-uuid'To generate a new UUID:
uuid = Uuid.generateTo create a new UUID from a value:
value = "\xde\x30\x5d\x54\x75\xb4\x43\x1b\xad\xb2\xeb\x6b\x9e\x54\x60\x14"
uuid = Uuid.new(value)To parse an existing UUID string:
str = 'de305d54-75b4-431b-adb2-eb6b9e546014'
uuid = Uuid.parse(str)Use #to_s to generate a human-readable representation of the UUID.
Command-line Usage
Run the generate-uuid script to generate and output a UUID.
$ generate-uuid
c06b98c9-4cd6-4265-97ef-3299027cde88
Or pass a number as an argument to generate multiple UUIDs.
$ generate-uuid 5
cf803c2a-a04b-45ff-be3b-294b70a5d8d5
4e5a5172-79f4-4cd2-9649-fc5f6b682679
62b4226d-23fb-4e5f-856b-1dfbf0448719
2d259f9d-bd4d-4c56-b3d2-71305f5f73d9
6d5755b0-78fa-4bfe-a8e5-0b16fb941e8a
Development
After checking out the repo, run bin/setup to install developer dependencies.
Then, run bundle exec rake test to run the tests.
It's recommended that you run bundle exec rake inspect to run inspections.
You can also run bin/console for an interactive prompt that will allow you to experiment.
bundle exec rake doc will generate documentation.
To install this gem onto your local machine, run bundle exec rake install.
To release a new version, update the version number in version.rb, and then run bundle exec rake release.
This will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.
Contributing
Bug reports and pull requests are welcome on GitHub.