Git Product home page Git Product logo

sec_id's Introduction

SecId

Gem Version Build Status Maintainability Test Coverage

Validate securities identification numbers with ease!

Check-digit calculation is also available.

Currently supported standards: ISIN, CUSIP, SEDOL

Work in progress: IBAN.

Installation

Add this line to your application's Gemfile:

gem 'sec_id', '~> 4.0'

And then execute:

$ bundle

Or install it yourself as:

$ gem install sec_id

Usage

Base API

Base API has 4 main methods which can be used both on class level and on instance level:

  • valid? - never raises any errors, always returns true or false, numbers without the check-digit will return false

    # class level
    SecId::ISIN.valid?('US5949181045') # => true
    SecId::ISIN.valid?('US594918104')  # => false
    
    # instance level
    isin = SecId::ISIN.new('US5949181045')
    isin.valid? # => true
  • valid_format? - never raises any errors, always returns true or false, numbers without the check-digit but in valid format will return true

    # class level
    SecId::ISIN.valid_format?('US5949181045') # => true
    SecId::ISIN.valid_format?('US594918104') # => true
    
    # instance level
    isin = SecId::ISIN.new('US594918104')
    isin.valid_format? # => true
  • restore! - restores check-digit and returns the full number, raises an error if number's format is invalid and thus check-digit is impossible to calculate

    # class level
    SecId::ISIN.restore!('US594918104') # => 'US5949181045'
    
    # instance level
    isin = SecId::ISIN.new('US5949181045')
    isin.restore! # => 'US5949181045'
  • check_digit and calculate_check_digit - these are the same, but the former is used at class level for bravity, and the latter is used at instance level for clarity; it calculates and returns the check-digit if the number is valid and raises an error otherwise.

    # class level
    SecId::ISIN.check_digit('US594918104') # => 5
    
    # instance level
    isin = SecId::ISIN.new('US594918104')
    isin.calculate_check_digit # => 5
    isin.check_digit # => nil

    โ— Please note that isin.check_digit returns nil because #check_digit at instance level represents original check-digit of the number passed to new, which in this example is missing and thus it's nil.

SecId::ISIN full example

# class level
SecId::ISIN.valid?('US5949181045')       # => true
SecId::ISIN.valid_format?('US594918104') # => true
SecId::ISIN.restore!('US594918104')      # => 'US5949181045'
SecId::ISIN.check_digit('US594918104')   # => 5

# instance level
isin = SecId::ISIN.new('US5949181045')
isin.full_number           # => 'US5949181045'
isin.country_code          # => 'US'
isin.nsin                  # => '594918104'
isin.check_digit           # => 5
isin.valid?                # => true
isin.valid_format?         # => true
isin.restore!              # => 'US5949181045'
isin.calculate_check_digit # => 5

SecId::CUSIP full example

# class level
SecId::CUSIP.valid?('594918104')       # => true
SecId::CUSIP.valid_format?('59491810') # => true
SecId::CUSIP.restore!('59491810')      # => '594918104'
SecId::CUSIP.check_digit('59491810')   # => 5

# instance level
cusip = SecId::CUSIP.new('594918104')
cusip.full_number           # => '594918104'
cusip.cusip6                # => '594918'
cusip.issue                 # => '10'
cusip.check_digit           # => 4
cusip.valid?                # => true
cusip.valid_format?         # => true
cusip.restore!              # => '594918104'
cusip.calculate_check_digit # => 4

SecId::SEDOL full example

# class level
SecId::SEDOL.valid?('B0Z52W5')       # => true
SecId::SEDOL.valid_format?('B0Z52W') # => true
SecId::SEDOL.restore!('B0Z52W')      # => 'B0Z52W5'
SecId::SEDOL.check_digit('B0Z52W')   # => 5

# instance level
cusip = SecId::SEDOL.new('B0Z52W5')
cusip.full_number           # => 'B0Z52W5'
cusip.check_digit           # => 5
cusip.valid?                # => true
cusip.valid_format?         # => true
cusip.restore!              # => 'B0Z52W5'
cusip.calculate_check_digit # => 5

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/svyatov/sec_id.

License

The gem is available as open source under the terms of the MIT License.

sec_id's People

Contributors

dependabot-preview[bot] avatar dependabot[bot] avatar depfu[bot] avatar svyatov avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

wtn

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.