Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

luhn_credit_card_verificator

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

luhn_credit_card_verificator

  • 2.0.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

LuhnCreditCardVerificator

Verify the validity of a credit card thanks to the the most reliable Luhn algorithm !!

As the name of the package assumes, the verification is based on the Luhn algorithm. It allows you to check easier if numbers of a credit card are valid or not.

Installation

Install the gem and add to the application's Gemfile by executing:

$ bundle add luhn_credit_card_verificator

If bundler is not being used to manage dependencies, install the gem by executing:

$ gem install luhn_credit_card_verificator

Usage

3 functions you can use :

1) Verify if the numbers of the credit card are ok
is_verif_card(credit_card_number)

Example :

require 'luhn_credit_card_verificator';

card_number_from_user = 6011000990139424
result = LuhnCreditCardVerificator.is_verif_card(card_number_from_user);
puts result

>>  return true or false

2) Get the issuing bank information (AMEX, VISA or MASTERCARD)
get_issuing_bank(credit_card_number)

Example :

require 'luhn_credit_card_verificator';

card_number_from_user = 4556737586899855
result = LuhnCreditCardVerificator.get_issuing_bank(card_number_from_user);
puts result

>>  return VISA 

2) Get the both (If credit card number are ok and issuing bank)
get_all_credit_card_information(credit_card_number);

Example :

require 'luhn_credit_card_verificator';

card_number_from_user = 4556737586899855
result = LuhnCreditCardVerificator.get_all_credit_card_information(card_number_from_user);
puts result

>>  return {valid => true, "bank" => VISA} 

If result is True so the card is OK.

If result is False so the card is WRONG

Accepted input

  • string
  • numbers

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test 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. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/SarahBourgeois/luhn_credit_card_verificator. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

Code of Conduct

Everyone interacting in the LuhnCreditCardVerificator project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

FAQs

Package last updated on 02 Jun 2022

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc