Skip to content

dashingrocket/sequel-nonsequential_id

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 

sequel-nonsequential_id

Run Status Gem Version Downloads

Automatically generate non-sequential (pseudo-random) IDs for Sequel Models

Installation

Add this line to your application's Gemfile:

gem 'sequel-nonsequential_id'

And then execute:

$ bundle

Or install it yourself as:

$ gem install sequel-nonsequential_id

Usage

# Enable nonsequential id for all Models
Sequel::Model.plugin :nonsequential_id

# Enable nonsequential id on a specific model (defaults to the :id field)
class Artist < Sequel::Model
  plugin :nonsequential_id 
end


# Enable nonsequential id on a specific model using a custom id field
class Artist < Sequel::Model
  plugin :nonsequential_id, id_field: :custom_id_field
end

Continuous Integration

Tested in a CI environment against the following Ruby versions:

  • ruby-head
  • 2.5
  • 2.4
  • 2.3

Contributing

  1. Fork it ( https://github.com/dashingrocket/sequel-nonsequential_id/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

About

Automatically generate non-sequential (pseudo-random) IDs for Sequel Models

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages