Sha256: 5fb2a9e5b5ac8a7939e6da07f42a9f51bf346a897fddc13b36ed3a708e0dd57b
Contents?: true
Size: 1.25 KB
Versions: 1
Compression:
Stored size: 1.25 KB
Contents
# Petrarca This library Petrarca provides some utility functions to manipulate ISBN numbers: - Validation - Calculate check digit - Mutual conversion of ISBN-13 and ISBN-10 - Hyphenation All functions support both ISBN-13 and ISBN-10. All ranges of registration groups and registrants are supported. Those depends on 'RangeMessage.xml' file, downloaded from [International ISBN Agency](https://www.isbn-international.org/range_file_generation). NOTE: Updated range files to latest version on October 4, 2021. ## Installation Add this line to your application's Gemfile: ```ruby gem 'petrarca' ``` And then execute: $ bundle Or install it yourself as: $ gem install petrarca ## Usage irb(main):001:0> require 'petrarca' => true irb(main):002:0> Petrarca.valid?("978-4-8156-0644-2") => true irb(main):003:0> Petrarca.calc_check_digit("978-4-8156-0644-2") => "2" irb(main):004:0> Petrarca.to_10("978-4-8156-0644-2") => "4-8156-0644-7" irb(main):005:0> Petrarca.to_13("4-8156-0644-7") => "978-4-8156-0644-2" irb(main):006:0> Petrarca.hyphenate("9784815606442") => "978-4-8156-0644-2" ## License MIT License ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/takatoh/Petrarca.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
petrarca-0.4.9 | README.md |