-
-
Save emtee40/b443ef05055a54cfce8c4680634760e9 to your computer and use it in GitHub Desktop.
Luhn checksum/check digit generation in Ruby.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Luhn | |
| def self.checksum(number) | |
| digits = number.to_s.reverse.scan(/\d/).map { |x| x.to_i } | |
| digits = digits.each_with_index.map { |d, i| | |
| d *= 2 if i.even? | |
| d > 9 ? d - 9 : d | |
| } | |
| sum = digits.inject(0) { |m, x| m + x } | |
| mod = 10 - sum % 10 | |
| mod==10 ? 0 : mod | |
| end | |
| end | |
| # Luhn.checksum(123) # => 0 | |
| # Luhn.checksum(456) # => 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment