damm 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +36 -0
- data/Rakefile +1 -0
- data/damm.gemspec +20 -0
- data/lib/damm.rb +36 -0
- data/lib/damm/version.rb +3 -0
- metadata +54 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Steve Rosenhamer
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# Damm
|
2
|
+
Let's face it, who doesn't like a good damm check digit? The Damm algorithm provides
|
3
|
+
a solid scheme for generating a digit for a given sequence and checking that
|
4
|
+
sequence with the check digit included. More details here: http://en.wikipedia.org/wiki/Damm_algorithm
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
Add this line to your application's Gemfile:
|
9
|
+
|
10
|
+
gem 'damm'
|
11
|
+
|
12
|
+
And then execute:
|
13
|
+
|
14
|
+
$ bundle
|
15
|
+
|
16
|
+
Or install it yourself as:
|
17
|
+
|
18
|
+
$ gem install damm
|
19
|
+
|
20
|
+
## Usage
|
21
|
+
|
22
|
+
require 'damm'
|
23
|
+
|
24
|
+
# have a number
|
25
|
+
seq = '1001004'
|
26
|
+
|
27
|
+
# add a check digit
|
28
|
+
seq << Damm.generate(seq).to_s
|
29
|
+
|
30
|
+
# sometime later, a real user keys that number in and you want to
|
31
|
+
# sure they got it right...
|
32
|
+
|
33
|
+
# validate it
|
34
|
+
Damm.valid?(seq) # => true
|
35
|
+
|
36
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/damm.gemspec
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'damm/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "damm"
|
8
|
+
gem.version = Damm::VERSION
|
9
|
+
gem.authors = ["Steve Rosenhamer"]
|
10
|
+
gem.email = ["srosenhamer@me.com"]
|
11
|
+
gem.description = %q{Damm module provides methods for generating check digits
|
12
|
+
and checking sequences using the damm algorithm}
|
13
|
+
gem.summary = %q{Damm algorithm generator/checker}
|
14
|
+
gem.homepage = ""
|
15
|
+
|
16
|
+
gem.files = `git ls-files`.split($/)
|
17
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
18
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
19
|
+
gem.require_paths = ["lib"]
|
20
|
+
end
|
data/lib/damm.rb
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
require "damm/version"
|
2
|
+
|
3
|
+
module Damm
|
4
|
+
# totally anti-symmetric quasigroup is taken from Damm's doctoral
|
5
|
+
# dissertation page 111
|
6
|
+
TASQ = [
|
7
|
+
[0,3,1,7,5,9,8,6,4,2],
|
8
|
+
[7,0,9,2,1,5,4,8,6,3],
|
9
|
+
[4,2,0,6,8,7,1,3,5,9],
|
10
|
+
[1,7,5,0,9,8,3,4,2,6],
|
11
|
+
[6,1,2,3,0,4,5,9,7,8],
|
12
|
+
[3,6,7,4,2,0,9,5,8,1],
|
13
|
+
[5,8,6,9,7,2,0,1,3,4],
|
14
|
+
[8,9,4,5,3,6,2,0,1,7],
|
15
|
+
[9,4,3,8,6,1,7,2,0,5],
|
16
|
+
[2,5,8,1,4,3,6,7,9,0]
|
17
|
+
]
|
18
|
+
|
19
|
+
|
20
|
+
def self.generate sequence
|
21
|
+
self.calc(sequence, 'generate')
|
22
|
+
end
|
23
|
+
|
24
|
+
def self.valid? sequence
|
25
|
+
self.calc(sequence, 'check')
|
26
|
+
end
|
27
|
+
|
28
|
+
private
|
29
|
+
|
30
|
+
def self.calc sequence, action
|
31
|
+
i = 0
|
32
|
+
sequence.to_s.each_char { |c| i = TASQ[i][c.to_i] }
|
33
|
+
(action == 'generate' ? i : i.zero?)
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
data/lib/damm/version.rb
ADDED
metadata
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: damm
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Steve Rosenhamer
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-04-23 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: ! "Damm module provides methods for generating check digits\n and
|
15
|
+
checking sequences using the damm algorithm"
|
16
|
+
email:
|
17
|
+
- srosenhamer@me.com
|
18
|
+
executables: []
|
19
|
+
extensions: []
|
20
|
+
extra_rdoc_files: []
|
21
|
+
files:
|
22
|
+
- .gitignore
|
23
|
+
- Gemfile
|
24
|
+
- LICENSE.txt
|
25
|
+
- README.md
|
26
|
+
- Rakefile
|
27
|
+
- damm.gemspec
|
28
|
+
- lib/damm.rb
|
29
|
+
- lib/damm/version.rb
|
30
|
+
homepage: ''
|
31
|
+
licenses: []
|
32
|
+
post_install_message:
|
33
|
+
rdoc_options: []
|
34
|
+
require_paths:
|
35
|
+
- lib
|
36
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
37
|
+
none: false
|
38
|
+
requirements:
|
39
|
+
- - ! '>='
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '0'
|
42
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
43
|
+
none: false
|
44
|
+
requirements:
|
45
|
+
- - ! '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
requirements: []
|
49
|
+
rubyforge_project:
|
50
|
+
rubygems_version: 1.8.24
|
51
|
+
signing_key:
|
52
|
+
specification_version: 3
|
53
|
+
summary: Damm algorithm generator/checker
|
54
|
+
test_files: []
|