Project

cuuid

0.0
No commit activity in last 3 years
No release in over 3 years
Ruby wrapper for the uuid library in your OS.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

CUUID

This gem is a thin C => Ruby wrapper around the <uuid/uuid.h> library that should come with your OS. It's been tested on OS X (10.7+) and Ubuntu (10.04 LTS). It provides one method for you.

Usage

CUUID.generate # => "08146761-57BF-46C9-A55B-1B49103AA08B"

Or if you've required "cuuid/uuid" then you can just do

UUID.generate # => "08146761-57BF-46C9-A55B-1B49103AA08B"

Dependencies

  • OS X - works out the box. Just install and go.
  • Ubuntu/Debian - requires the uuid-dev package installing. (apt-get install uuid-dev)
  • Other OS' - You'll need to install libuuid and have the headers available for the gem to compile against.

Installation

Rubygem install:

gem install cuuid

Gemfile:

gem "cuuid"

There's an optional file for compatibility with the uuid gem:

require "cuuid/uuid"

or in your Gemfile:

gem "cuuid", require: "cuuid/uuid"

License

See LICENSE