Socket
Book a DemoInstallSign in
Socket

uuid_ids

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uuid_ids

0.0.2
bundlerRubygems
Version published
Maintainers
1
Created
Source

UuidIds

A simple gem to make it easy to use UUIDs as the id for Rails models.

Gem Version Build Status Code Climate Coverage Status Dependency Status

Your table creation migration should look something like this:

    create_table :things, :id => false do |t|
      t.binary :id, :primary_key => true, :null => false
      t.timestamps
    end
    add_index :things, :id, :unique => true

binary type is your best bet as it will be put into schema.db correctly.

Then inside of your model just do this:

include UuidIds::ModelHelper

If you need to you can set the id outside of the model. If there is a collision (and you have a unique index) then an exception will be raised and it's up to your app to handle that. If you don't have a unique index and there is a collision you'll have two objects with the same id.

This project rocks and uses MIT-LICENSE.

FAQs

Package last updated on 30 Apr 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.