public
Description: Base62 encoding and decoding to turn numbers into very compact strings
Homepage: http://github.com/JackDanger/Alphadecimal
Clone URL: git://github.com/JackDanger/alphadecimal.git
JackDanger (author)
Tue Mar 11 15:17:25 -0700 2008
commit  2d30454deaca4c1f3a7d282185c3cc8141748140
tree    d43c2f38dc2b4610266c05ae34938bc5628cdf13
parent  891e8284972a2f1bdbbe01c21babaa80b5aa2d57
alphadecimal / Rakefile
100644 14 lines (10 sloc) 0.36 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/alphadecimal.rb'
 
Hoe.new('alphadecimal', Alphadecimal::VERSION) do |p|
  # p.rubyforge_name = 'alphadecimal' # if different than lowercase project name
  p.developer('Mike Mondragon', 'mikemondragon@gmail.com')
  p.developer('Jack Danger Canty', 'jdanger@adpickles.com')
end
 
# vim: syntax=Ruby