Skip to content

uceem/cellularity

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cellularity

Determine whether a value is an ICCID, IMEI, or ESN.

Installation

Add this line to your application's Gemfile:

gem 'cellularity'

And then execute:

$ bundle

Or install it yourself as:

$ gem install cellularity

Usage

Currently, Cellularity can handle ESNs, ICCIDs, and IMEIs.

imei = 123456789012345       # It can be a string or a number
esn = '0xabc12345'           # The ESN class can also handle hex.
iccid = 12345678901234567890
min = 1234567890

## Validate your values:
Cellularity::Esn.new(esn).valid?     # => true
Cellularity::Esn.new(imei).valid?    # => false
Cellularity::Iccid.new(iccid).valid? # => true
Cellularity::Min.new(min).valid?     # => true
Cellularity::Min.new(:invalid).valid?   # => false

# Dynamically determine your id type:
Cellularity.determine_id_type(esn)   # => :esn
Cellularity.determine_id_type(iccid) # => :iccid

Contributing

  1. Fork it
  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 new Pull Request

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages