base31_guid 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/Gemfile ADDED
@@ -0,0 +1,13 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ # Add dependencies to develop your gem here.
7
+ # Include everything needed to run rake, tests, features, etc.
8
+ group :development do
9
+ gem "shoulda", ">= 0"
10
+ gem "bundler", "~> 1.0.0"
11
+ gem "jeweler", "~> 1.5.2"
12
+ gem "rcov", ">= 0"
13
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 foomip
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,37 @@
1
+ = base31_guid
2
+
3
+ This is a small class library, used to display base 10 integers as an easy to read base31 number. This was library was
4
+ created as part of a bigger project, where a human-readable guid was required.
5
+
6
+ Requirements for the GUID:
7
+ 1. The GUID should be easy for a human to read and memorise, if required (ie. no too long and alpha-numeric).
8
+ 2. The GUID should not randomly generate string that would be considered profanity (hence the exclusion of all
9
+ vowel characters from the GUID alpha-numeric range).
10
+
11
+ Sample usage:
12
+
13
+ #Convert base10 integer to base31 guid string:
14
+ base10 = 12345
15
+ obj = Base31Guid.new(base_length=5)
16
+ base31 = obj.dec_to_base31($base10num) # base31 = "00DV7"
17
+
18
+ #Convert base31 guid string to base10 integer
19
+ base31 = "00DV7"
20
+ obj = Base31Guid.new(base_length=5)
21
+ base10 = obj.base31str_to_dec($base31num) # base10 = 12345
22
+
23
+ == Contributing to base31_guid
24
+
25
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
26
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
27
+ * Fork the project
28
+ * Start a feature/bugfix branch
29
+ * Commit and push until you are happy with your contribution
30
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
31
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
32
+
33
+ == Copyright
34
+
35
+ Copyright (c) 2011 foomip. See LICENSE.txt for
36
+ further details.
37
+
data/Rakefile ADDED
@@ -0,0 +1,53 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ begin
4
+ Bundler.setup(:default, :development)
5
+ rescue Bundler::BundlerError => e
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
+ end
10
+ require 'rake'
11
+
12
+ require 'jeweler'
13
+ Jeweler::Tasks.new do |gem|
14
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
15
+ gem.name = "base31_guid"
16
+ gem.homepage = "http://github.com/foomip/base31_guid"
17
+ gem.license = "MIT"
18
+ gem.summary = %Q{base10 to base31 guid conversion library}
19
+ gem.description = %Q{used (primarily) for converting auto-incrementing integer values to a base31 hyman-readable form}
20
+ gem.email = "nelsondcp@gmail.com"
21
+ gem.authors = ["foomip"]
22
+ # Include your dependencies below. Runtime dependencies are required when using your gem,
23
+ # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
24
+ # gem.add_runtime_dependency 'jabber4r', '> 0.1'
25
+ # gem.add_development_dependency 'rspec', '> 1.2.3'
26
+ end
27
+ Jeweler::RubygemsDotOrgTasks.new
28
+
29
+ require 'rake/testtask'
30
+ Rake::TestTask.new(:test) do |test|
31
+ test.libs << 'lib' << 'test'
32
+ test.pattern = 'test/**/test_*.rb'
33
+ test.verbose = true
34
+ end
35
+
36
+ require 'rcov/rcovtask'
37
+ Rcov::RcovTask.new do |test|
38
+ test.libs << 'test'
39
+ test.pattern = 'test/**/test_*.rb'
40
+ test.verbose = true
41
+ end
42
+
43
+ task :default => :test
44
+
45
+ require 'rake/rdoctask'
46
+ Rake::RDocTask.new do |rdoc|
47
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
48
+
49
+ rdoc.rdoc_dir = 'rdoc'
50
+ rdoc.title = "base31_guid #{version}"
51
+ rdoc.rdoc_files.include('README*')
52
+ rdoc.rdoc_files.include('lib/**/*.rb')
53
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.0
@@ -0,0 +1,71 @@
1
+ # This module is used to convert a base10 integer into an equivalent base31 guid string (and vice-versa).
2
+ # The base31 number is represented as a alpha-numeric characters (excluding the vowel charatcers A, E, I, O, U);
3
+ # this is done to avoid confusion between numbers and letters (eg. 1 and I, 0 and O) and also to avoid
4
+ # nasty words from being generated from their equivalent decimal values.
5
+
6
+ class Base31Guid
7
+ # base31/base10 equivalent string definitions
8
+ Dec_vals = {
9
+ "0" => "0","1" => "1","2" => "2","3" => "3","4" => "4","5" => "5",
10
+ "6" => "6","7" => "7","8" => "8","9" => "9","10" => "B","11" => "C",
11
+ "12" => "D","13" => "F","14" => "G","15" => "H","16" => "J",
12
+ "17" => "K","18" => "L","19" => "M","20" => "N","21" => "P",
13
+ "22" => "Q","23" => "R","24" => "S","25" => "T","26" => "V",
14
+ "27" => "W","28" => "X","29" => "Y","30" => "Z","B" => "10",
15
+ "C" => "11","D" => "12","F" => "13","G" => "14","H" => "15",
16
+ "J" => "16","K" => "17","L" => "18","M" => "19","N" => "20",
17
+ "P" => "21","Q" => "22","R" => "23","S" => "24","T" => "25",
18
+ "V" => "26","W" => "27","X" => "28","Y" => "29","Z" => "30"
19
+ }
20
+
21
+ def initialize(base_length=6)
22
+ @base_length = base_length
23
+ end
24
+
25
+ def base31str_to_dec(str)
26
+ if not str.is_a?(String)
27
+ raise StandardError, "Received value is not a valid string"
28
+ end
29
+
30
+ len = pos = str.length
31
+ total = 0
32
+
33
+ while pos > 0 do
34
+ val = str[(len - pos), 1]
35
+ intval = Dec_vals[val].to_i
36
+
37
+ tmp = pos
38
+ while (tmp - 1) > 0 do
39
+ intval = intval * 31
40
+ tmp -= 1
41
+ end
42
+
43
+ total += intval
44
+ pos -= 1
45
+ end
46
+
47
+ return total
48
+ end
49
+
50
+ def dec_to_base31(num)
51
+ if not num.is_a?(Integer)
52
+ raise StandardError, "Received value is not a valid integer"
53
+ end
54
+
55
+ base31 = ""
56
+
57
+ while num > 0 do
58
+ rem = num % 31
59
+ num = num / 31
60
+ val = Dec_vals[rem.to_s]
61
+
62
+ base31 = val + base31
63
+ end
64
+
65
+ while base31.length < @base_length do
66
+ base31 = "0" + base31
67
+ end
68
+
69
+ return base31
70
+ end
71
+ end
data/test/helper.rb ADDED
@@ -0,0 +1,18 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ begin
4
+ Bundler.setup(:default, :development)
5
+ rescue Bundler::BundlerError => e
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
+ end
10
+ require 'test/unit'
11
+ require 'shoulda'
12
+
13
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
14
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
15
+ require 'base31_guid'
16
+
17
+ class Test::Unit::TestCase
18
+ end
@@ -0,0 +1,19 @@
1
+ require 'helper'
2
+
3
+ class TestBase31Guid < Test::Unit::TestCase
4
+ $base10num = 12345
5
+
6
+ should "testing conversion from base10 to base31" do
7
+ obj = Base31Guid.new(base_length=5)
8
+ $base31num = obj.dec_to_base31($base10num)
9
+ end
10
+
11
+ should "testing conversion from base31 to base10 - and that numbers are correctly converted" do
12
+ obj = Base31Guid.new(base_length=5)
13
+ newbase10num = obj.base31str_to_dec($base31num)
14
+
15
+ if not newbase10num == $base10num
16
+ flunk "Conversions did not return valid numbers between conversions - logic error in base31_guid"
17
+ end
18
+ end
19
+ end
metadata ADDED
@@ -0,0 +1,136 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: base31_guid
3
+ version: !ruby/object:Gem::Version
4
+ hash: 31
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 0
10
+ version: 0.0.0
11
+ platform: ruby
12
+ authors:
13
+ - foomip
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-01-06 00:00:00 +02:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ type: :development
23
+ prerelease: false
24
+ name: shoulda
25
+ version_requirements: &id001 !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ">="
29
+ - !ruby/object:Gem::Version
30
+ hash: 3
31
+ segments:
32
+ - 0
33
+ version: "0"
34
+ requirement: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ type: :development
37
+ prerelease: false
38
+ name: bundler
39
+ version_requirements: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ~>
43
+ - !ruby/object:Gem::Version
44
+ hash: 23
45
+ segments:
46
+ - 1
47
+ - 0
48
+ - 0
49
+ version: 1.0.0
50
+ requirement: *id002
51
+ - !ruby/object:Gem::Dependency
52
+ type: :development
53
+ prerelease: false
54
+ name: jeweler
55
+ version_requirements: &id003 !ruby/object:Gem::Requirement
56
+ none: false
57
+ requirements:
58
+ - - ~>
59
+ - !ruby/object:Gem::Version
60
+ hash: 7
61
+ segments:
62
+ - 1
63
+ - 5
64
+ - 2
65
+ version: 1.5.2
66
+ requirement: *id003
67
+ - !ruby/object:Gem::Dependency
68
+ type: :development
69
+ prerelease: false
70
+ name: rcov
71
+ version_requirements: &id004 !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ hash: 3
77
+ segments:
78
+ - 0
79
+ version: "0"
80
+ requirement: *id004
81
+ description: used (primarily) for converting auto-incrementing integer values to a base31 hyman-readable form
82
+ email: nelsondcp@gmail.com
83
+ executables: []
84
+
85
+ extensions: []
86
+
87
+ extra_rdoc_files:
88
+ - LICENSE.txt
89
+ - README.rdoc
90
+ files:
91
+ - .document
92
+ - Gemfile
93
+ - LICENSE.txt
94
+ - README.rdoc
95
+ - Rakefile
96
+ - VERSION
97
+ - lib/base31_guid.rb
98
+ - test/helper.rb
99
+ - test/test_base31_guid.rb
100
+ has_rdoc: true
101
+ homepage: http://github.com/foomip/base31_guid
102
+ licenses:
103
+ - MIT
104
+ post_install_message:
105
+ rdoc_options: []
106
+
107
+ require_paths:
108
+ - lib
109
+ required_ruby_version: !ruby/object:Gem::Requirement
110
+ none: false
111
+ requirements:
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ hash: 3
115
+ segments:
116
+ - 0
117
+ version: "0"
118
+ required_rubygems_version: !ruby/object:Gem::Requirement
119
+ none: false
120
+ requirements:
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ hash: 3
124
+ segments:
125
+ - 0
126
+ version: "0"
127
+ requirements: []
128
+
129
+ rubyforge_project:
130
+ rubygems_version: 1.3.7
131
+ signing_key:
132
+ specification_version: 3
133
+ summary: base10 to base31 guid conversion library
134
+ test_files:
135
+ - test/helper.rb
136
+ - test/test_base31_guid.rb