-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser_friendly_id.gemspec
21 lines (18 loc) · 1.03 KB
/
user_friendly_id.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/user_friendly_id/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Alex Agranov"]
gem.email = ["[email protected]"]
gem.description = %q{Make long integer ids pretty, short and less confusing by shortening via conversion to base34}
gem.summary = %q{By leveraging base34 - [0-9, A-Z minus I & O] - we can significantly reduce the number of characters used to represent a number. For instance, a 24-digit base10 number can be represented with just 16 digits in base34.}
gem.homepage = ""
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "user_friendly_id"
gem.require_paths = ["lib"]
gem.version = UserFriendlyId::VERSION
gem.add_development_dependency 'bundler', '~> 1.3'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
end