base52/base52.gemspec
Andrew Tomaka 0e78005f3e Update Gemspec Name
Judging from other gems, the name attribute of the Gemspec
configuration file should not contain spaces.
2012-10-15 00:33:53 -04:00

15 lines
699 B
Ruby

Gem::Specification.new do |s|
s.name = 'base52'
s.version = '2'
s.date = '2012-09-24'
s.summary = 'Encode and Decode Base 52 Values'
s.description = 'Implement functionality to the base Integer class to convert
an integer into an equivalent base 52 string using the
character set 0-9, A-Z, a-z excluding vowels. Additionally,
implement functionality to the base String class to convert a
base 52 string back to an integer.'
s.authors = ['Andrew Tomaka']
s.email = 'atomaka@gmail.com'
s.files = ['lib/base52.rb']
s.homepage = 'https://github.com/atomaka/base52'
end